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