题解 | #遍历字典#

遍历字典

https://www.nowcoder.com/practice/0315639767824323a2cdb9ee3f998314

print("Here is the original dict:")
operators_dict={'<':'less than','==':'equal'}
#operators_dict=sorted(operators_dict.items(),key=lambda x:x[1])
for k,v in operators_dict.items():
    print(f"Operator {k} means {v}.")
new_dict={">":"greater than"}
operators_dict.update(new_dict)
#operators_dict=sorted(operators_dict.items(),key=lambda x:x[1])
print()
print("The dict was changed to:")
for k,v in operators_dict.items():
    print(f"Operator {k} means {v}.")

这题有问题呀,排序的话返回列表,不排序能通过

全部评论

相关推荐

头像
2024-11-21 11:39
四川大学 Java
是红鸢啊:忘了还没结束,还有字节的5k 违约金
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务