python不能创建字典的是_为什么我不能搜索我创建的字典(Python)?

在这个程序中,我从一个纯文本文件中创建一个字典,基本上我计算一个单词在文档中的出现量,这个单词成为键,它出现的时间就是值。我可以创建字典,但无法在字典中搜索。这是我用你们的输入更新的代码。我真的很感谢你的帮助。在from collections import defaultdict

import operator

def readFile(fileHandle):

d = defaultdict(int)

with open(fileHandle, "r") as myfile:

for currline in myfile:

for word in currline.split():

d[word] +=1

return d

def reverseLookup(dictionary, value):

for key in dictionary.keys():

if dictionary[key] == value:

return key

return None

afile = raw_input ("What is the absolute file path: ")

print readFile (afile)

choice = raw_input ("Would you like to (1) Query Word Count (2) Print top words to a new document (3) Exit: ")

if (choice == "1"):

query = raw_input ("What word would like to look up? ")

print reverseLookup(readFile(afile), query)

if (choice == "2"):

f = open("new.txt", "a")

d = dict(int)

for w in text.split():

d[w] += 1

f.write(d)

file.close (f)

if (choice == "3"):

print "The EXIT has HAPPENED"

else:

print "Error"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值