摘要: 1.python字典 >>> dict = {'a': 1, 'b': 2, 'b': '3'} >>> dict['b'] '3' >>> dict {'a': 1, 'b': '3'} python 列表 序号方法 1 list.append(obj)在列表末尾添加新的对象 2 list.cou 阅读全文
posted @ 2021-02-03 15:21 FF_FF1 阅读(28) 评论(0) 推荐(0) 编辑