Python Unicode 输出格式
在Python中,我通过Win32Com将数据作为元组提取:
((u'863579XK9',),)
我如何解析它,以便只留下863579XK9,以便我可以将其写入文件?
In Python I pull in data via Win32Com as a tuple:
((u'863579XK9',),)
How can I parse this so that I am left with just 863579XK9 so I can write that to a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于这是一个 unicode 字符串,您需要将其写入 unicode 编码文件:
请参阅 读取和写入 Unicode 数据 来自 Python Unicode HOWTO。
Since this is a unicode string, you'd want to write it to a unicode encoded file:
See Reading and Writing Unicode Data from the Python Unicode HOWTO.