python 函數:數學運算類

#函數例子 print abs(-2) print complex(1) print divmod(15,2) #結果爲商和餘數組成的元祖 print float(3.75) print int('a',16) #將16進制a轉化爲10進制整數 print int('1010',2) #將二進制1010轉化爲10十進制整數 print long('a',16) print pow(2, 4)
相關文章
相關標籤/搜索