Python學習(三)資料結構

來源:互聯網
上載者:User

標籤:

Python 資料結構

  本章介紹 Python 主要的 built-type,包括如下:

  • Numeric types          int float
  • Text Sequence Type       str
  • Boolean              bool
  • Sequence  Types        list tuple range
  • Mapping Types          dict
  • Set Types             set

  

  type() 函數

    type(object) 函數,返回括弧中對象的 資料類型。

 

  數字類型

    python 提供了常用的數字類型:整數int,浮點數float,複數complex(暫不學習,需要時參考文檔)

1 number = 1                  # int2 # print(number)3 print(type(number))4 number = 1.0                # float 注意加了小數點 .0 就是浮點型了5 # print(number)6 print(type(number))

     數字可通過運算子進行簡單的運算,可通過匯入math模組進行數學計算等;詳細學習章節參考:Python學習(三)資料結構 —— int float

 

 

 

    

Python學習(三)資料結構

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.