描述
读入一个字典类型的字符串,反转其中键值对输出。
即,读入字典key:value模式,输出value:key模式。
输入格式
用户输入的字典格式的字符串,如果输入不正确,提示:输入错误。
输出格式
给定字典d,按照print(d)方式输出
s = input()
try:
dic = eval(s)
d = {value:key for key,value in dic.items()} #利用推导式
print(d)
except:
print("输入错误")
、
items方法扩展
https://www.runoob.com/python/att-dictionary-items.html
描述
Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。
语法
items()方法语法:
dict.items()
返回值
返回可遍历的(键, 值) 元组数组。