当我尝试从wahbilogintest.py
包含字典的文件中获取键和值时遇到了问题kids{}
。
你能帮我如何wahbilogintest.py
在目录中搜索我的文件C:/webbplats/mydata
并在文件中迭代以获取/带来键和值吗?
我的源代码
class visafilerIkatalogen :
import os
folder = 'c:/webbplats/mydata/'
dinfil = raw_input("Enter your userprofile med prefix.txt: ")
#dindictionary = raw_input("Enter your dictionary name: ")
loginReadProfile = open(folder+str(dinfil),'r')
for key, value in dinfil.iteritems():
print 'Username is: ',key
print 'value is: ',value
print loginReadProfile.readlines()
loginReadProfile.close()
Myobj12 = visafilerIkatalogen()