我正确使用file.seek和file.tell吗?

时间:2016-02-12 17:15:56

标签: python

第一次在这里问一个问题,但很难过,可以用手做。

所以我在python中编写一个涉及论证项目的程序。该脚本总体上需要从json文件中获取一些节点,并确定参数的线性顺序,并将其正确地按顺序放入树中。但是,我在这里遇到的主要问题是非常基本的。如果" nodeInt"我需要将行读取器移回一行。等于" nodeIdentifier",所以我可以从前一行(fromID)读取一个值。我已经突出显示了这些用途(一个"寻找",两个"告诉")

不幸的是,目前它只是读同一条线而且似乎没有像我认为的那样向后移动。我是不是错误地使用了这些命令,还是其他错误?提前谢谢。

fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;

1 个答案:

答案 0 :(得分:0)

First, I'm not sure if you've just not included it or if it actually isn't there, but you're missing the declaration for last_pos before you use it as the seek index. Check out the docs on using seek and tell as well; it should be pretty helpful here.