摘要: #字典 无序(没有下标)---通过key访问 info = { 'stu1101':"TengLan Wu", 'stu1102':"LongZe Luola", 'stu1103':"XiaoZe Maliya", } print (info) #查 print(info["stu1101"]) #若值不存在,则报错 print(info.get("stu1101"))... 阅读全文
posted @ 2019-06-03 17:01 LBC不认输 阅读(160) 评论(0) 推荐(0) 编辑