以下為兩個函式
是要從txt讀檔進來
第一個原不是寫成函式,所以在open的filename打上"檔案名稱.txt"就可以output
第二個是計算每個字出現多少次的函式
def readbook(filename):
readin = open(filename)
count = []
for line in readin:
read = line.split()
count = count + read
return count
def list2dict(count):
ldict = dict()
for ch in count:
ldict[ch]=ldict.get(ch,0)+1
return ldict
想問要如何打print()裡面的內容才可以print出每個字出現幾次