1. 程式人生 > >python hex() oct() bin() math 內置函數

python hex() oct() bin() math 內置函數

pytho class inf mage .com spa 3.1 -s print

示例:

print hex(20),hex(-20) #轉換成十六進制
print oct(20),oct(-20) #轉換成八進制
print bin(20),bin(-20) #轉換成二進制

print int("字面值", 進制)    #轉換整型
print float("字面值")      #轉換浮點型

print round(浮點型)      #浮點型四舍五入

math方法:
  math.pi     = π   值3.141592653
  math.pow(2,4)  = 16  2的4次方
  math.sqrt(144)  = 12  144開平方=12

  技術分享圖片

python hex() oct() bin() math 內置函數