大家我只是想知道如何计算str中ch中的重复,我写的函数是:
def repeat(s):
'''
'''
count = 0
L = []
for i in range(len(s)):
count = 0
if s[i] in s:
count = count + 1
else:
count = count
L.append(count)
return L
但是,如果字母相同,该列表将自行重复。有没有更好的方法来计算 str 中的字符数量?我在想用字典?