题解 | #单词统计#
单词统计
https://www.nowcoder.com/practice/0b6df47098e246ad8fc52002dcaea1fa
dict1={'word': 2, 'while': 15, 'for': 20, 'if': 26, 'else': 14, 'print': 9}
word=input()
if word in dict1.keys():
dict1[word]+=1
print (dict1)
else:
dict1[word]=1
print (dict1)

查看22道真题和解析