成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

python查找字符串出現(xiàn)次數(shù) 怎么用python統(tǒng)計字符串中每個字符出現(xiàn)的次數(shù)?

怎么用python統(tǒng)計字符串中每個字符出現(xiàn)的次數(shù)?STR=input(“please input a string of characters”)STR1=str.下()str2={}foriinst

怎么用python統(tǒng)計字符串中每個字符出現(xiàn)的次數(shù)?

STR=input(“please input a string of characters”)STR1=str.下()str2={}foriinstr1:str2[i]=str1.count(i)print(str2)

怎么用python統(tǒng)計字符串中每個字符出現(xiàn)的次數(shù)?

s=input().lower()result=[[e,s.count(e)]for e in set(list(s))]print(result)