准備工作:創建一個txt文件,放在源文件所在的目錄下。本例子使用student.txt作為示范
完整代碼:
#聲明文件名稱
fileName = "student.txt"
#以只讀方式打開txt文件
ll = open(fileName,"r")
#讀取文件中的所有數據
data = ll.read()
count = 0
res = {}
for ch in data:
#判斷是當前字符否為字母
if ch.isalpha():
if ch not in res:
res[ch] = 1
else :
res[ch] = res[ch] + 1
print(res)
運行結果如下:
字母a出現2次,字母b出現3次......