python內建函數
阿新 • • 發佈:2017-08-06
call src print true bool nco cnblogs color 都是
#abs 求絕對值 print(abs(-1)) #all #判斷函數內部的布爾值,如果都是Trun則返回true #空是True print(all([1,2,‘a‘,None])) print(all([])) #bool值為假的情況:None,空,0,False #any #如果函數內部的布爾值任意有一個為True則返回True #空是False print(any([])) print(any([‘ ‘,None,False])) #True print(any([‘‘,None,False])) #False print(any([‘‘,None,False,1])) #True#bin,oct,hex #分別代表返回二進制 返回八進制 返回十六進制 print(bin(10)) #0b開頭 print(oct(10)) #0o開頭 print(hex(10)) #0x開頭 #bytes #將字符串轉換成bytes類型 #unicode----encode----->bytes print(‘hello‘.encode(‘utf-8‘)) print(bytes(‘hello‘,encoding=‘utf-8‘)) #callable #查看對象是否是可調用對象 print(callable(bytes)) print(callable(abs)) #chr,ord #chr打印ascii碼中編號對應的字符 #ord打印字符在ascii中的編號 print(chr(65)) print(chr(90)) # print(ord(‘#‘))
python內建函數