标签:
计算机内存中:unicode
在保存与传输过程中要求encode:一般网络utf-8编码方式,对内存中的uncode字符再编码
编码:
>>> ‘ABC‘.encode(‘ascii‘)
b‘ABC‘
>>> ‘中文‘.encode(‘utf-8‘)
b‘\xe4\xb8\xad\xe6\x96\x87‘
解码:
>>> b‘ABC‘.decode(‘ascii‘)
‘ABC‘
>>> b‘\xe4\xb8\xad\xe6\x96\x87‘.decode(‘utf-8‘)
‘中文‘
len
(X):如果是b"表达式"是字节码,就表示有多少个长度
:如果非字节形式,表示字符个数
格式化:
EG:‘Hello, %s‘ % ‘world‘---->‘Hello, world‘
标签:
原文地址:http://www.cnblogs.com/zengkefu/p/5568787.html