1 格式化输出
%s %d %f %c %o %x %e
format '{:.2f}'.fomat(12.333) '{a:.2f}'.fomat(a = 12.333) '{:.2%}'.fomat(12.333) f = 'Hello,{}'.format 把format看作函数调用
2 字符串编码
'str'.encode(encoding = 'utf-8') 'str'.decode(encoding = 'utf-8')
3深浅复制
浅复制一样会改变ID;当遇到列表嵌套时候,要考虑深浅复制。 浅复制 ls3 = ls2.copy() 嵌套ls1的情况下 深复制 import copy ls4 = copy.deepcopy(ls2)
4 bytes和bytearray
二进制序列 bytes() 二进制数组 bytearray()