根据《python核心编程》书中的例子程序如下:
import re s = 'This and that.' it = re.finditer(r'(th\w+)', s, re.I) g = it.next()
按道理应该是能运行通过的,但是出现了如下问题:
大神们帮我看看是什么原因。
我在https://stackoverflow.com/questions/28542497/iterparse-object-has-no-attribute-next网站里面找到了原因。
Assuming you are using Python3, the iterator syntax is next(context)
instead of context.next()
是python版本的问题。