Python eval 字符串中的整数,并返回整数而不是 ascii 字符
我从一个文件中获取一些数据,如下所示:
[200, "Hello", "World"]
现在,由于这是一个文件,因此该数组位于一个字符串内;我使用 eval()
将其转换为数组。 这工作正常,但开头的整数被转换为 ascii 字符,而不是我想要的整数(欧元符号)。
我该如何解决这个问题?
I'm getting some data from a file, which looks like this:
[200, "Hello", "World"]
Now, since this is a file, this array is inside a string; I turn it into an array using eval()
.
This works fine BUT the integer at the start is converted to an ascii char, instead of an integer as I want it to (the euro sign).
How can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 simplejson 模块。例如,
这样,诸如 os.execvp() 之类的“恶意”数据将不会被评估,但会抛出
JSONDecodeError
。You could use the simplejson module. E.g.
This way "malicious" data such as
os.execvp()
would not be evaluated but anJSONDecodeError
would be thrown.您可以使用
literal_eval
。确实取决于源 - 源是使用 Python 还是 JSON - 有很多重叠,它们具有相同的表示形式You can use
literal_eval
. Really depends on the source - is the source speaking Python or JSON - there is a lot of overlap where they have identical representations