您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關python中如何使用if語句,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
if語句:判斷語句,根據條件判斷是否繼續執行
輸入:
#!/usr/bin/python
# Filename: if.py
number = 23
guess = int(input('Enter an integer : '))
if guess == number:
print('Congratulations, you guessed it.')
# New block starts here
print('(but you do not win any prizes!)')
# New block ends here
elif guess < number:
print('No, it is a little higher than that')
# Another block
# You can do whatever you want in a block ...
else:
print('No, it is a little lower than that')
# you must have guess > number to reach here
print('Done')
# This last statement is always executed, after the if statement is executed
第一遍運行輸出:
$ python if.py
Enter an integer : 50
No, it is a little lower than that
Done
第二遍運行輸出:
$ python if.py
Enter an integer : 22
No, it is a little higher than that
Done
第三遍運行輸出:
$ python if.py
Enter an integer : 23
Congratulations, you guessed it. (but you do not win any prizes!)
Done
解釋:
上面的執行代碼時一個猜數字的小游戲,運行程序后,提示輸入一個數字,用戶通過在控制臺輸入數字來執行猜數字。
if語句在這里起判斷作用,如果條件滿足(即猜的數字相等)就提示猜對。
如果條件沒滿足會執行if條件的分支語句elif,
2級判斷:猜的數字太小了
如果條件仍然沒滿足,繼續會執行if條件的分支語句elif,3級判斷:猜的數字太大了
所有可判斷的條件執行完畢,輸出結果。
輸入一個數字進行if條件判斷,只會有1種輸出:要么是相等提示,猜對;要么是大了;要么是小了。
輸入:
if True:
print('Yes, it is true')
輸出:
Yes, it is true
解釋:
if語句結構
if 條件 :
print(“內容”)
注意上面的冒號,以及冒號后的語句縮進。
看完上述內容,你們對python中如何使用if語句有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。