我想定義一個函數scaryDict()
,它需要一個參數(一個textfile
)並按照字母順序從textfile
返回字,基本上產生一個字典,但不打印任何一個或兩個字母的單詞。python字典功能,文本文件
這裏是我迄今爲止...這是不是很多,但我不知道下一步
def scaryDict(fineName):
inFile = open(fileName,'r')
lines = inFile.read()
line = lines.split()
myDict = {}
for word in inFile:
myDict[words] = []
#I am not sure what goes between the line above and below
for x in lines:
print(word, end='\n')
我必須填寫從一個文本字一個空的字典中的字母順序 – user2816609