第五天 常用基本函數
阿新 • • 發佈:2018-02-15
類型 方法 rate enumerate enc 打印 十六 () enume
常用函數 abs() 絕對值 all()Return True if bool(x) is True for all values x in the iterable. If the iterable is empty, return True any()Return True if bool(x) is True for any x in the iterable. If the iterable is empty, return False. bin() 轉化為二進制 bool() 判斷True or False 0 None 空字符串判斷為False bytes(‘‘,encoding=‘‘) 轉換編碼 bytes(‘‘,encoding=‘‘.decode(‘‘)) 先編碼 再解碼 編碼和解碼的格式要相同 chr()轉化為ASCII碼值 dir() 打印某個對象下面的方法 #divmod(x,y) 得到商和余數的一個元組 多用於分頁 "" Return the tuple (x//y, x%y). Invariant: div*y + mod == x. enumerate() #eval() 將字符串中的結構提取出來 將字符串中的數學運算計算出來 hash() 可哈希的即不可變數據類型 得到一個可哈希的值 這個值長度固定,不可反推 用於 判斷程序是否改變 help() 提供方法解釋 bin()十進制轉二進制 hex() 十進制轉十六進制 oct()十進制轉8進制
第五天 常用基本函數