arr = [‘a‘,‘b‘,‘c‘] arr.append(‘d‘) print(arr) for each in arr: print(each)
Python 数组
原文:https://www.cnblogs.com/guxingy/p/12204845.html