国产成人毛片视频|星空传媒久草视频|欧美激情草久视频|久久久久女女|久操超碰在线播放|亚洲强奸一区二区|五月天丁香社区在线|色婷婷成人丁香网|午夜欧美6666|纯肉无码91视频

python用字典統(tǒng)計出現(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)