标签:print pytho class lis 实例化 code append 自己 列表
ls = list([1,2,3]) print('ls:',ls)
ls:[1,2,3,]
ls.append(4) print('ls:',ls)
ls:[1,2,3,4]
081 python中一切皆对象
原文地址:https://www.cnblogs.com/xichenHome/p/11414733.html