python自定义函数运行时出现‘index out of range'的情况,求教高手!!
我在IDLE里面一行一行测试的时候new_list[2]这个命令是没有问题的,但是写完函数再run的时候,提示我:ifnew_list[2]==district:Inde...
我在IDLE里面一行一行测试的时候new_list[2]这个命令是没有问题的,但是写完函数再run的时候,提示我:
if new_list[2] == district:
IndexError: list index out of range
测试用的TXT文件内容如下:
Paul Gries M5S 2E4
Saint Nicholas H0H OH0
Jen Campbell M5S 2E4
Steven Joseph Harper K1A 0A3
Justin "biebs" Bieber M5J 2L2
每一行都包含四个元素,我用split生成列表以后,按理说new_list[2]是可以实现的,为什么会返回错误呢!求教高手!!!
def percentage_by_district(file_name, district):
'''
(file open for reading, str) -> float
Return the percentage of customers who are from that district.
>>>percentage_by_district('/Users/***/Desktop/***/customers.txt', 'H0H')
>>>0.2
'''
count_num = 0
total_num = 0
file = open(file_name, 'r')
line = file.readline()
while line != '':
line = file.readline()
total_num = total_num + 1
new_list = line.split()
if new_list[2] == district:
count_num = count_num + 1
return count_num/total_num 展开
if new_list[2] == district:
IndexError: list index out of range
测试用的TXT文件内容如下:
Paul Gries M5S 2E4
Saint Nicholas H0H OH0
Jen Campbell M5S 2E4
Steven Joseph Harper K1A 0A3
Justin "biebs" Bieber M5J 2L2
每一行都包含四个元素,我用split生成列表以后,按理说new_list[2]是可以实现的,为什么会返回错误呢!求教高手!!!
def percentage_by_district(file_name, district):
'''
(file open for reading, str) -> float
Return the percentage of customers who are from that district.
>>>percentage_by_district('/Users/***/Desktop/***/customers.txt', 'H0H')
>>>0.2
'''
count_num = 0
total_num = 0
file = open(file_name, 'r')
line = file.readline()
while line != '':
line = file.readline()
total_num = total_num + 1
new_list = line.split()
if new_list[2] == district:
count_num = count_num + 1
return count_num/total_num 展开
2个回答
展开全部
这里有几个问题。
1.第一行的line=file.readline() 这一行被浪费了。换句话说,文本中的第一行没有被处理
2.new_list=line.split() 这一行有问题,通常应该加一个判断
if not line.strip():break
因为,文本文件readline,最后一行可能为空行。
你的net_list[2]就是因为空行造成的。所以split出来的结果是长度为0的,空列,当然2就index out of range了。
1.第一行的line=file.readline() 这一行被浪费了。换句话说,文本中的第一行没有被处理
2.new_list=line.split() 这一行有问题,通常应该加一个判断
if not line.strip():break
因为,文本文件readline,最后一行可能为空行。
你的net_list[2]就是因为空行造成的。所以split出来的结果是长度为0的,空列,当然2就index out of range了。
追问
我不太明白为什么WHILE LOOP的第一行不能被执行。我打印出来发现new_list是空的,问题是不是出在while根本就没有执行呢?谢谢!如果不使用if判定,只更改循环请问要怎么改呢?谢谢!
追答
通常是这样用。
fp=open(file_name, 'r')
while True:
line=fp.readline()
if not line:break
....
...
fp.close()
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询