Python 数组的追加

# 数组的追加
a = ['a','b','c']
a.append('d')
print(a)
原文地址:https://www.cnblogs.com/guxingy/p/12410568.html