Python3的資料型別

C+++愛好者發表於2018-09-02

  Python提供了強大的內建資料型別,以供程式設計師使用。除非有特殊原因,我們最好總是使用內建型別作為我們的實現方案。內建的資料物件更快更高效,並且經過了大量的驗證,不容易出錯。

      下面就是Python的內建的資料型別:

資料型別 例項
數字    1111, 123.4, 3+4j ,  0b101 , 0o777 ,  0xff , Decimal() , Fraction()
字串 `Hello`, “Hello”, “It`s 10″, `He says,”you are nice.”`,  “`字元長度“` ,”””字串”””
列表  [1,2, 3, 4] , [`Jan`, `Feb`, `Mar`] ,  
元組 (1, 2, 3, 4) , (`Jan`, `Feb`, `Mar`)
字典 { name :`Jack` , phone:`1234` } 
集合 { `a`, `e` , `o` ,` i`, `u` } 
檔案 open(`example.txt`)
其它型別 True, False , None 
函式 abs , round , 

相關文章