显然,我是 Python 新手。
我想在下面的代码中使用 StringIO:提取 example.xml
import os
os.chdir('d:/py/xml/')
from lxml import etree
from StringIO import StringIO
#----------------------------------------------------------------------
def parseXML(xmlFile):
"""
Parse the xml
"""
f = open(xmlFile)
xml = f.read()
f.close()
tree = etree.parse(StringIO(xml))
context = etree.iterparse(StringIO(xml))
for action, elem in context:
if not elem.text:
text = 'None'
else:
text = elem.text
print (elem.tag + ' => ' + text)
if __name__ == "__main__":
parseXML("example.xml")
但我不断收到这个消息
语法错误:从 io 导入导入 StringIO:d:\py\xml\example.py,第 621 行文件“d:\py\xml\example.py”,第 6 行,在?从 io 导入导入 StringIO
我做了谷歌,但它说要导入 io 模型并将 io.StringIO 或 io.BytesIO 用于文本或数据...
谁能告诉我,我该怎么做?
谢谢