91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中input如何輸入讀取數字

發布時間:2021-09-07 11:45:37 來源:億速云 閱讀:1221 作者:小新 欄目:編程語言

這篇文章主要介紹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如何輸入讀取數字”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

娄底市| 麻阳| 鹤庆县| 阿勒泰市| 玉门市| 凤冈县| 中方县| 岳西县| 黑龙江省| 卓尼县| 调兵山市| 康乐县| 胶州市| 西乌珠穆沁旗| 新闻| 徐州市| 罗源县| 禄丰县| 富蕴县| 丰镇市| 清河县| 鄂伦春自治旗| 宁远县| 秦安县| 吉木乃县| 娱乐| 梁河县| 潞西市| 永安市| 清水河县| SHOW| 宁陕县| 清新县| 常州市| 台中市| 新兴县| 怀柔区| 四会市| 林甸县| 五华县| 维西|