python中字典的操作

字典 # key-value # 沒有序號 info = { 'stu1101':'Zhangsan', 'stu1102':'Lisi', 'stu1103':'Wangwu', } print(info) print(info['stu1101']) # 查 info['stu1101'] = '武藤蘭' # 修改 info['stu1104'] = '
相關文章
相關標籤/搜索