题解 | #使用字典计数#
使用字典计数
https://www.nowcoder.com/practice/74f7e7f2344f4754bc56d862838cbfc3
word = input() count_dict = {} for alpha in word: count_dict[alpha] = word.count(alpha) print(count_dict)
str.count(指定字符串)
count可用于统计指定字符串出现的次数
对于指定的不存在的字符串 返回值为0 程序不会报错
下面是在想起count之前编写的代码
#Python学旅#