热门
dict() - 创建一个字典。
my_dict=dict([('name', 'John'), ('age', 30)]) # 从键值对列表创建字典print(my_dict) # 输出:{'name': 'John', 'age': 30}