基础DAY13-文本编码
Posted joycezhou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础DAY13-文本编码相关的知识,希望对你有一定的参考价值。
python2 字符串
# *-* coding:utf8 *-*
# 引号前面的u告诉解释器这是一个utf8编码格式的字符串
hello_str = u"hello世界"
print(hello_str)
for c in hello_str:
print(c)
以上是关于基础DAY13-文本编码的主要内容,如果未能解决你的问题,请参考以下文章