开发者

Python. The coding of a string

开发者 https://www.devze.com 2023-02-12 05:23 出处:网络
>>> w开发者_开发知识库ord = \'\\u041a\\u041e\\u041b\' >>> print u\'\\u041a\\u041e\\u041b\'
>>> w开发者_开发知识库ord = '\u041a\u041e\u041b'
>>> print u'\u041a\u041e\u041b' 
КОЛ
>>> print word 
\u041a\u041e\u041b

How to transform string as a variable to a readable kind (how print word)?


>>> print '\u041a\u041e\u041b'.decode('unicode-escape')
КОЛ
0

精彩评论

暂无评论...
验证码 换一张
取 消