在Python 3中,支持的數字類型有
int--整數型
float--浮點型
bool--布林型
complex--複數
num1=2 #整數型
num2=0b101 #二進位制 b=binary
num8=0o24 #八進位制 o=Octal
num16=0x3F #十六進制 x=Hexadecimal,Hex
float_num1=2.345
float_num2=1.23e9
b_var1=True
b_var2=False
b_var3=true #錯誤,因為Python 3 大小寫很敏感
c_num=complex(3,4) #複數
type(c_num)
type(b_var1)