1. 程式人生 > >Python中統計輸入字元的個數

Python中統計輸入字元的個數

Python中這個功能主要使用了count()這個函式,具體實現程式碼如下:

content = input("請輸入一串字串:")
res = {}
for i in content:
    res[i] = content.count(i)
print(res)