题解 | #遍历字典#

遍历字典

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

#不好意思,我看没人吐槽这题目描述,那只能我来了,这题描述就是一陀答辩
operators_dict = {'<':'less than', '==':'equal'}
print('Here is the original dict:')
for i in sorted(operators_dict):
    print(f'Operator {i} means {operators_dict[i]}.')
operators_dict['>'] = 'greater than'
print('')
print('The dict was changed to:')
for j in sorted(operators_dict):
    print(f'Operator {j} means {operators_dict[j]}.')

全部评论
我也想说,这出题人**
点赞 回复 分享
发布于 2024-10-26 23:41 贵州

相关推荐

评论
4
收藏
分享
牛客网
牛客企业服务