将字符串转换为另一种数据类型,Python
我有字符串 "(0, 0, 0)"
。我希望能够将其转换为元组。内置的 tuple 函数不适用于我的目的,因为它将每个字符视为单独的项目。我希望能够以编程方式将 "(0, 0, 0)"
转换为 (0, 0, 0)
。
I have the string "(0, 0, 0)"
. I'd like to be able to convert this to a tuple. The built in tuple
function doesn't work for my purposes because it treats each character as an individual item. I want to be able to convert "(0, 0, 0)"
to (0, 0, 0)
programmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ast.literal_eval
You can use ast.literal_eval