初学者,coding 验证 “字符串与编码”时,发现无需加'u'可输出中文。
我记得之前(几个月前)是不行的。搜了一下并未有提及 2.7 支持中文的说法;然后做了一些环境的测试后我凌乱了。
- 有些可以输出
- 有些部分乱码
- 甚至有些会报错(“些”==1 )
测试代码:
# !/usr/bin/python
# -*- coding: utf-u -*-
str = '吃'
print str
print (u'吃')
print u'吃'
输出
****环境 1:Mac****
吃
吃
吃
****window10 - cmd ***
鍚
吃
吃
***windows10 - Git_bash
吃
Traceback (most recent call last):
File "2-stringCode.py", line 14, in <module>
print (u'吃')
UnicodeEncodeError: 'ascii' codec can't encode character u'\u5403' in position 0: ordinal not in range(128)
****window10 - Visual Studio Code 调试器****
吃
吃
吃
我。。。。。凌乱了;
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.