协程没有next方法?

  1. #!/usr/bin/env python
  2. #coding:utf-8
  3. import time
  4. import sys
  5. ###
  6. #  生成器與協程
  7. ##
  8. ###
  9. #  生成器
  10. #  不斷返回新行
  11. #  @param [in]  f    打開的文件描述符
  12. #  @yield line 新的行
  13. ##
  14. def tail(f):
  15.         f.seek(0,2)        # 移動到文件末尾
  16.                                 # To change the file object’s position, use f.seek(offset, from_what). The position is computed from adding offset to a reference point; the reference point is selected by the from_what argument. A from_what value of 0 measures from the beginning of the file, 1 uses the current file position, and 2 uses the end of the file as the reference point. from_what can be omitted and defaults to 0, using the beginning of the file as the reference point.
  17.         while True:
  18.                 line = f.readline()        # 嘗試讀取一個新的文本行
  19.                 if not line:                # 如果沒有內容,暫時休眠并再次嘗試
  20.                         time.sleep(0.1)
  21.                         continue
  22.                 yield line
  23. ###
  24. #  協程
  25. #  查找匹配關鍵字的輸入行
  26. #  @param [in]  要匹配的關鍵字
  27. #  @print [out] 打印匹配的行
  28. ##
  29. def print_matches(matchtext):
  30.         print ("Looking for "+matchtext)
  31.         while True:
  32.                 line = (yield)        # 獲取一個文本
  33.                 if matchtext in line:
  34.                         print (line)

  35. if __name__ == "__main__":
  36.         if len(sys.argv) != 2:
  37.                 sys.exit(1)
  38.        
  39.         matchers = [ # 一組匹配協程
  40.                 print_matches("python"),
  41.                 print_matches("www.lkcc.info"),
  42.                 print_matches("bbs.lkcc.info")
  43.         ]
  44.        
  45.         for m in matchers:        # 通過調用next()準備所有的匹配協程, 執行到第一個yield語句
  46.                 m.next()

  47.         f = open(sys.argv[1])
  48.         for line in tail(f):
  49.                 for m in matchers:
  50.                         m.send(line)
复制代码
执行后说:
下载 (17.46 KB)
2011-06-02 12:28

求解。。谢谢。。

作者: 小锐同学1   发布时间: 2011-06-02

回复 小锐同学1
python3里面  next() 被重命名为__next__(),改成m.__next__()试一下。建议你换2.7。

作者: 106033177   发布时间: 2011-06-02

回复 106033177


    谢谢大神。

可以了,不过貌似程序逻辑有错误。

一个这样的文件
下载 (11.46 KB)
2011-06-02 13:48
,却没有匹配的行被输出。

我再去找找错误。

作者: 小锐同学1   发布时间: 2011-06-02