1. 添加字典元素 方法一:直接添加,给定键值对 #pycharm aa = {'人才':60,'英语':'english','adress':'here'} print(aa) # {'人才': 60, '英语': 'english', 'adress': 'here'} #添加方法一:根据键值对添加 aa['价格'] = 100 print(aa) # {'人才': 60, '英语': 'english', 'adress': 'here', '价格': 100} 方法二:使用update方…