python——append后的列表为什么打印出来为空
摘要:关于python 列表append的用法: list = [] list = list.append("c") print(list) >>>None 正确写法应为: list = [] list.append("c") print(list) >>>["c"] 关于字典zip的用法: 由此可见,z
阅读全文
posted @ 2019-08-27 18:37
posted @ 2019-08-27 18:37
posted @ 2019-08-26 19:55
posted @ 2019-08-16 20:18
posted @ 2019-08-12 14:26
posted @ 2019-08-03 13:09