IndexError:列表索引超出范围

时间:2016-02-13 11:04:22

标签: python windows permissions python-idle

products = {} 
fi=open("prod_file.txt", "r") 
for line in fi:
        L = line.rstrip().split(":")
        products[L[0]] = {"desc" : L[1], "price" : L[2], "stock" : int(L[3]), "reorder" : int(L[4]), "target" : int(L[5])} 
fi.close() 

这部分代码在学校工作,但不在我家。我正在使用一个包含不同值的简单文本文件。我知道序数从0开始,但它仍然给我这个错误。我研究了它,但仍然没有答案。它可以链接到我得到的这个错误窗口吗?

  

"无法更新“最近的文件”列表:[Errno 13]权限被拒绝:   ' C:\用户\本\ .idlerc \最近-FILES.LST' "

请帮忙 我使用的是版本3.3.2 这是我正在使用的文本文件(prod_file.txt):

93126793:Knife:1:456:100:500
69584930:Pear:0.25:300:100:900
96865460:AAA Battery 10 Pack:10:508:100:150
68488550:Flip Phone:99.99:12:50:100
45637285:Apple:0.5:255:100:1100
12546732:Banana:0.4:432:100:1000
55993647:Plate:1.99:46:100:170
76038280:Fork:1:546:100:500
14054310:Phone:70.50:5:50:70
25226393:Laptop:40:0:50:100
07165122:Firework:27.5:456:100:200
13566135:AA Battery 10 Pack:13:0:100:200
28963264:Spork:1:555:100:200
06359492:Spoon:1:4656:100:400
15025630:Bowl:1.99:45:100:150

1 个答案:

答案 0 :(得分:0)

尝试使用admin运行python。 如果它仍然不起作用,也许你的python版本与学校的版本不一样。