Python基礎之條件控制操作示例【if語句】
本文實例講述了Python基礎之條件控制操作。分享給大家供大家參考,具體如下:
if 語句
Python中if語句的一般形式如下所示:
if condition_1: statement_block_1 elif condition_2: statement_block_2 else: statement_block_3
如果 "condition_1" 為 True 將執(zhí)行 "statement_block_1" 塊語句,如果 "condition_1" 為False,將判斷 "condition_2",如果"condition_2" 為 True 將執(zhí)行 "statement_block_2" 塊語句,如果 "condition_2" 為False,將執(zhí)行"statement_block_3"塊語句。
Python中用elif代替了else if,所以if語句的關鍵字為:if – elif – else。
注意:
1、每個條件后面要使用冒號(:),表示接下來是滿足條件后要執(zhí)行的語句塊。
2、使用縮進來劃分語句塊,相同縮進數的語句在一起組成一個語句塊。
3、在Python中沒有switch – case語句。
以下實例演示了狗的年齡計算判斷:
age = int(input("Age of the dog: "))
print()
if age < 0:
print("This can hardly be true!")
elif age == 1:
print("about 14 human years")
elif age == 2:
print("about 22 human years")
elif age > 2:
human = 22 + (age -2)*5
print("Human years: ", human)
###
input('press Return>')
將以上腳本保存在dog.py文件中,并執(zhí)行該腳本:
python dog.py
Age of the dog: 1
about 14 human years
以下為if中常用的操作運算符:
| 操作符 | 描述 |
|---|---|
| < | 小于 |
| <= | 小于或等于 |
| > | 大于 |
| >= | 大于或等于 |
| == | 等于,比較對象是否相等 |
| != | 不等于 |
# 程序演示了 == 操作符 # 使用數字 print(5 == 6) # 使用變量 x = 5 y = 8 print(x == y)
以上實例輸出結果:
False
False
high_low.py文件:
#!/usr/bin/python3
# 該實例演示了數字猜謎游戲
number = 7
guess = -1
print("Guess the number!")
while guess != number:
guess = int(input("Is it... "))
if guess == number:
print("Hooray! You guessed it right!")
elif guess < number:
print("It's bigger...")
elif guess > number:
print("It's not so big.")
關于Python相關內容感興趣的讀者可查看本站專題:《Python函數使用技巧總結》、《Python面向對象程序設計入門與進階教程》、《Python數據結構與算法教程》、《Python字符串操作技巧匯總》、《Python編碼操作技巧總結》及《Python入門與進階經典教程》
希望本文所述對大家Python程序設計有所幫助。

