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