我想跳过一行并阅读下一行。
#from __future__ import print_function
with open ('t1.txt','r') as f1:
for i in f1:
s2 = next(i)
s1 = i
print(s1 + '\n' + s2)
f1 = next(f1)
这是档案t1.txt
1,2
3,4
10,11
12,13
20,21
22,23
30,31
32,33
40,41
42,43
50,51
52,53
我正在尝试读取第1行和第2行,然后递增文件迭代器以跳过一行,并读取下一行。但是错误为TypeError: str object is not an iterator
。我怎样才能做到这一点? (使用python 2.x和3.x,如果重要的话)