Python3 中的Number

Python3 支持 int、float、bool、complex(複數)python

在Python 3裏,只有一種整數類型 int,表示爲長整型,沒有 python2 中的 Long。函數

像大多數語言同樣,數值類型的賦值和計算都是很直觀的。spa

內置的 type() 函數能夠用來查詢變量所指的對象類型。code

複數:對象

1 虛數不能單獨存在,它們老是和一個值爲 0.0 的實數部分一塊兒來構成一個複數。
2複數由實數部分和虛數部分構成
3表示虛數的語法: real+imagj
4 實數部分和虛數部分都是浮點數
5 虛數部分必須有後綴 j 或 J。blog

 1 count = 100  
 2 mile = 1.01
 3 name = "hello word "
 4 print(count)
 5 print(mile)
 6 print(name)
 7 
 8 a=b=c= 15
 9 print(a)
10 print(b)
11 print(c)
12 
13 e,f,g=1,1.236,"demo"
14 print(e,f,g)
15 
16 a,b,c,d,e=1,120.15,False,4-8j,"String"
17 print(type(a),type(b),type(c),type(d),type(e))

 在 Python2 中是沒有布爾型的,它用數字 0 表示 False,用 1 表示 True。到 Python3 中,把 True 和 False 定義成關鍵字了,但它們的值仍是 1 和 0,它們能夠和數字相加。class

相關文章
相關標籤/搜索