标签:lis int 写法 pen append print app bsp one
list = []
list = list.append("c")
print(list)
>>>None
正确写法应为:
list.append("c")
>>>["c"]
python随手小记
原文地址:https://www.cnblogs.com/fish-101/p/11420099.html