摘要: 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 码巨 阅读(29) 评论(0) 推荐(0)