迴路是否有pythonic的方法(我,我可以使用範圍循環知道(LEN(..)),並得到一個指數)做下面的例子:在蟒蛇
for line in list_of_strings:
if line[0] == '$':
while line[-1] == '#':
# read in the Next line and do stuff
# after quitting out of the while loop, the next iteration of the for loop
# should not get any of the lines that the while loop already dealt with
本質,嵌套的同時,循環應該增加for循環。
編輯:沒有一個文件句柄,混淆了兩件事我工作的,它的串
列表
使用line.startswith和line.endswith而不是line [0]和line [-1]。它適用於空行。而且看起來更好:)。 – utdemir
@utdemir:心靈吹,我已經做了'LEN(線)這麼多的檢查> 0' – pseudosudo