首頁  >  文章  >  後端開發  >  python如何判斷整數

python如何判斷整數

coldplay.xixi
coldplay.xixi原創
2021-03-05 16:20:0222878瀏覽

python判斷整數的方法:1、可以使用字串str的is digit方法判斷字串是否為僅有數字組成;2、可以使用【try-except】語句捕獲ValueError,並繼續請求輸入。

python如何判斷整數

本教學操作環境:windows7系統、python3.9版,DELL G3電腦。

python判斷整數的方法:

1、可以用字串str的is digit方法判斷字串是否是只有數字組成,也就是整數。如果是整數退出while循環,否則繼續請求輸入。

while True:
x = input('Input an integer: ')
if x.isdigit():
break
else:
print 'Please input an *integer*'

2、也可以使用try-except語句。如果輸入的字串是整數,那麼它可以用用int()函數,轉換為int類別並退出循環,否則會出現ValueError,可以使用try-except語句捕獲ValueError,然後繼續請求輸入。

while True:
try:
x = input('Input an integer: ')
x = int(x)
break
except ValueError:
print 'Please input an *integer*'

相關免費學習推薦:python影片教學

以上是python如何判斷整數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn