python随手小记
Posted fish-101
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python随手小记相关的知识,希望对你有一定的参考价值。
list = []
list = list.append("c")
print(list)
>>>None
正确写法应为:
list = []
list.append("c")
print(list)
>>>["c"]
以上是关于python随手小记的主要内容,如果未能解决你的问题,请参考以下文章