为什么while循环粘在raw_input上? (Python)
作者:互联网
在下面的代码中,我试图使用python脚本创建一个“更多”命令(unix),方法是将文件读入列表并一次打印10行,然后询问用户是否要打印下10行(打印更多. ).
问题是raw_input一次又一次地要求输入,如果我给’y’或’Y’作为输入并且不继续while循环并且如果我给任何其他输入while循环制动.
我的代码可能不是最好的学习python.
import sys
import string
lines = open('/Users/abc/testfile.txt').readlines()
chunk = 10
start = 0
while 1:
block = lines[start:chunk]
for i in block:
print i
if raw_input('Print More..') not in ['y', 'Y']:
break
start = start + chunk
我得到的输出代码是: –
--
10 lines from file
Print More..y
Print More..y
Print More..y
Print More..a
解决方法:
正如@Tim Pietzcker指出的那样,这里不需要更新块,只需使用start 10而不是chunk.
block = lines[start:start+10]
并使用start = 10更新开始.
使用itertools.islice()的另一种替代解决方案:
with open("data1.txt") as f:
slc=islice(f,5) #replace 5 by 10 in your case
for x in slc:
print x.strip()
while raw_input("wanna see more : ") in("y","Y"):
slc=islice(f,5) #replace 5 by 10 in your case
for x in slc:
print x.strip()
这个输出:
1
2
3
4
5
wanna see more : y
6
7
8
9
10
wanna see more : n
标签:python,while-loop,raw-input 来源: https://codeday.me/bug/20190718/1494416.html