1. 程式人生 > >第四次筆記

第四次筆記

abc 數組 code form end python orm () AD

字符出拼接

加號拼接

‘%s‘ % ()

‘‘.join ([])

‘%f’ %小數

‘%.2f’ %小數保留兩位

‘%d’ %整數

‘%+f‘%(1.2323) 加號代表輸出的小數代正負號

‘%-f ‘%(1.2323) 減號代表輸出的值左對齊

‘{0},{1},{2}‘.format( , , )

‘{name},{age},{height}‘.format(neme=‘‘,age=‘‘,height=‘‘)

‘{name},{name},{name}‘.format(neme=‘‘,age=‘‘,height=‘‘)

‘{變量},{變量},{變量}‘.format(neme=‘‘,age=‘‘,height=‘‘)

‘{:.2f}‘.format(1.2364) 保留兩位

‘{a:.2f}‘.format(a=1.2364) 保留兩位

‘{:.2%}‘.format(1.23442)

‘{a:<10}‘.format(a =10) 一共10個占位

‘{a:>10}‘.format(a =10) 一共10個占位

‘{a:^10}‘.format(a =10) 一共10個占位 居中

‘{s:x^10}‘.format(s = 12) 就x補齊占位

‘{{}}{:a>10}‘.format(10) 前面有{} 必須兩個{} 轉義

編碼

‘潭州‘.encode(‘GBK‘) 編碼 python默認utf-8 轉成 GBK

‘潭州‘.decode(‘GBK‘) 解碼 從GBK 轉成utf-8

深淺復制

import copy 導入

l4 = copy.deepcopy(l2)

bytes 二進制序列類型

指定長度的零填充字節對象: bytes(3)

二進制字符串對象: bytes(b‘abc‘)

bytearray 二進制數組

指定長度的零填充字節對象: bytearray(3)

二進制字符串對象: bytearray(b‘abc‘)

第四次筆記