您好,登錄后才能下訂單哦!
這篇文章主要介紹python中input如何輸入讀取數字,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1、從Python3開始,input返回一個字符串,必須將其顯式轉換為ints,使用int。
x = int(input("Enter a number: ")) y = int(input("Enter a number: "))
2、可以接受任何基數并使用int函數將它們直接轉換為基數。
>>> data = int(input("Enter a number: "), 8) Enter a number: 777 >>> data 511 >>> data = int(input("Enter a number: "), 16) Enter a number: FFFF >>> data 65535 >>> data = int(input("Enter a number: "), 2) Enter a number: 10101010101 >>> data 1365
第二個參數告訴輸入的數字的基數是什么,然后它在內部理解并轉換它。如果輸入的數據有誤,會拋出一ValueError。
>>> data = int(input("Enter a number: "), 2) Enter a number: 1234 Traceback (most recent call last): File "<input>", line 1, in <module> ValueError: invalid literal for int() with base 2: '1234'
對于可以具有小數部分的值,類型將是float而不是int:
x = float(input("Enter a number:"))
以上是“python中input如何輸入讀取數字”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。