python学习笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习笔记相关的知识,希望对你有一定的参考价值。
1 字符编码
>>> a= u"你好"
>>> b = a.encode(‘unicode_escape‘)
>>> b
b‘\\u4f60\\u597d‘
>>> c = b.decode(‘unicode_escape‘)
>>> c
‘你好‘
>>> a = "你好"
>>> b = a.encode(‘utf-8‘)
>>> b
b‘\xe4\xbd\xa0\xe5\xa5\xbd‘
>>>
以上是关于python学习笔记的主要内容,如果未能解决你的问题,请参考以下文章