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学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

[Python] Python 学习笔记

Python学习笔记

[Python笔记]Python学习笔记三

Python学习笔记-2017.5.4thon学习笔记-2017.5.14

[Python笔记]Python学习笔记四

Python学习笔记-2017.5.4thon学习笔记-2017.8.08