作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
显然,我是 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 import import StringIO:d:\py\xml\example.py,第 621 行文件“d:\py\xml\example.py”,第 6 行,在 ? 从 io 导入导入 StringIO
我搜索了谷歌,但它说要导入 io 模型并使用 io.StringIO 或 io.BytesIO 来获取文本或数据...
谁能告诉我,我该怎么做?
谢谢
最佳答案
http://docs.python.org/release/3.0.1/whatsnew/3.0.html#text-vs-data-instead-of-unicode-vs-8-bit :
The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.BytesIO for text and data respectively.
从 io 导入 StringIO
关于python - 如何在 python 3 中替换此语句 "StringIO import StringIO "(在 python 2 中可用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12146912/
我是一名优秀的程序员,十分优秀!