gpt4 book ai didi

python - 如何在 python 3 中替换此语句 "StringIO import StringIO "(在 python 2 中可用)

转载 作者:数据小太阳 更新时间:2023-10-29 02:50:07 28 4
gpt4 key购买 nike

显然,我是 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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com