28

尝试使用以下字符串作为文件读取,StringIO但出现以下错误。我该如何解决?

>> from io import StringIO
>>>
>>> datastring = StringIO("""\
... Country  Metric           2011   2012   2013  2014
... USA     GDP               7      4     0      2
... USA     Pop.              2      3     0      3
... GB      GDP               8      7     0      7
... GB      Pop.              2      6     0      0
... FR      GDP               5      0     0      1
... FR      Pop.              1      1     0      5
... """)
Traceback (most recent call last):
  File "<stdin>", line 9, in <module>
TypeError: initial_value must be unicode or None, not str
4

2 回答 2

40

您可以通过简单地在字符串之前添加 au 以使字符串 unicode 来解决错误:

datastring = StringIO(u"""\
Country  Metric           2011   2012   2013  2014
USA     GDP               7      4     0      2
USA     Pop.              2      3     0      3
GB      GDP               8      7     0      7
GB      Pop.              2      6     0      0
FR      GDP               5      0     0      1
FR      Pop.              1      1     0      5
""")

您的初始值应该是 unicode

于 2014-03-11T04:20:59.017 回答
14

而是使用(为我解决了这个确切的问题):

from StringIO import StringIO
于 2018-05-29T12:48:37.410 回答