- Python3中文本與二進(jìn)制徹底分離
- 字符串存儲(chǔ)Unicode文本
- r, raw string
- Python3中默認(rèn)字符串為unicode,是一種統(tǒng)一二進(jìn)制編碼. b二進(jìn)制字節(jié)編碼
- 編寫(xiě)代碼時(shí)除了保持簡(jiǎn)單汹想,還要具備良好的可讀性
- Python3中使用bytes和bytearray來(lái)存儲(chǔ)字節(jié)序列,不再和str(unicode)混用
- Python3.6新增f-string字符串格式化方式
x = 10
y = 20
f"{x} + {y} = {x+y}"
"{} + {} = {}".format(x, y, x+y)
- "{1:^#08,.2}".format(10000000000.000000000000, 2000.000)