Python Unicode 输出格式

发布于 2024-12-04 19:12:35 字数 125 浏览 0 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

岁月蹉跎了容颜 2024-12-11 19:12:35
data = ((u'863579XK9',),)
print data[0][0] # prints "863579XK9"
data = ((u'863579XK9',),)
print data[0][0] # prints "863579XK9"
一直在等你来 2024-12-11 19:12:35
>>> print ((u'863579XK9',),)[0][0]
863579XK9
>>> print ((u'863579XK9',),)[0][0]
863579XK9
风筝在阴天搁浅。 2024-12-11 19:12:35

由于这是一个 unicode 字符串,您需要将其写入 unicode 编码文件:

import codecs
myfile = codecs.open('myfile.txt', encoding='utf8', mode='w')
data = ((u'863579XK9',),) 
myfile.write(data[0][0].encode('utf8'))
myfile.close()

请参阅 读取和写入 Unicode 数据 来自 Python Unicode HOWTO。

Since this is a unicode string, you'd want to write it to a unicode encoded file:

import codecs
myfile = codecs.open('myfile.txt', encoding='utf8', mode='w')
data = ((u'863579XK9',),) 
myfile.write(data[0][0].encode('utf8'))
myfile.close()

See Reading and Writing Unicode Data from the Python Unicode HOWTO.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文