python基礎第10天-內建函數

來源:互聯網
上載者:User

標籤:eve   進位   span   color   als   布爾類型   style   float   類型   

基礎資料類型相關數字相關
  • 資料類型轉換
    • bool()

      轉布爾類型

      1 print(bool([]))  # False2 print(bool(‘‘))  # False3 print(bool(0))  # False4 print(bool({}))  # False5 print(bool(()))  # False
      View Code
    • int()

      轉整形

      1 print(int(‘3‘))  # 3
      View Code
    • float()

      轉浮點型

      1 print(float(‘3‘))  # 3.0
      View Code
    • complex()

      轉複數類型

      1 print(complex(‘3‘))  # (3+0j)
      View Code
  • 進位轉換
    • bin()

      轉二進位

      1 print(bin(2))  # 0b10
      View Code
    • oct()

      轉八進位

      1 print(oct(2))  # 0o2
      View Code
    • hex()

      轉十六進位

      1 print(hex(2))  # 0x2
      View Code
  • 數學運算
    • abs()

      絕對值

      1 print(abs(-3))  # 3
      View Code
    • divmod()

      除餘

      1 print(divmod(9, 4))  # (2, 1)  商2餘1
      View Code
    • round()

      精確小數位

      1 print(round(3.5687789,3))  # 3.569
      View Code
    • pow()

      冪運算

      1 print(pow(2,3))  # 8
      View Code
    • sum()

      求和

      1 print(sum([2,3]))  # 5
      View Code
    • max()

      最大值

      1 print(max([2,3]))  # 3
      View Code
    • min()

      最小值

      1 print(min([2,3]))  # 2
      View Code

       

       

python基礎第10天-內建函數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.