count_record = file.readline() count_prev = count_record [: - 1],
我用这个来阅读上一行,但是现在我正在使用
count_next=count_record[:+1]
我无法阅读下一行,是否有办法在下次阅读。
感谢您的帮助
答案 0 :(得分:1)
我对jython不太熟悉,不知道这里有什么类型的数据结构count_record
,或者它应该如何使用。
但是,我知道在任何情况下,调用file.readline()
都会获得下一行。
如果您想使用下一行,则需要再次调用readline。因此,举一个简单的例子,您的代码看起来像这样:
count_record=file.readline()
...
//use count_record here
...
count_record=file.readline()
...
// We now have the second line, use it here
...