if 語句
Python中if語句的通常形式以下所示:
if condition_1:
statement_block_1
elif condition_2:
statement_block_2
else:
statement_block_3
若是 "condition_1" 爲 True 將執行 "statement_block_1" 塊語句,若是 "condition_1" 爲False,將判斷 "condition_2",若是"condition_2" 爲 True 將執行 "statement_block_2" 塊語句,若是 "condition_2" 爲False,將執行"statement_block_3"塊語句。
Python中用elif代替了else if,因此if語句的關鍵字爲:if – elif – else。
注意:
一、每一個條件後面要使用冒號(:),表示接下來是知足條件後要執行的語句塊。
二、使用縮進來劃分語句塊,相同縮進數的語句在一塊兒組成一個語句塊。
三、在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文件中,並執行該腳本:
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.")