if 1 > 2:
print(『1 greater than 2』)
else:
print(『1 less than 2』)
解析:如果1>2,則列印』1 greater than 2』;否則,列印』1 less than 2』
else: #隱藏score>=0
if score == 0:
print(『egg』)
elif score <= 100: #隱藏 > 0
print(『right』)
else: #隱藏score > 100
ptint(『to big』)
折半的前提是有序,最好
給定乙個不超過5位的正整數,判斷其有幾位
b = int(input(「please input a nubmer」))
if b >= 1000:
if b > 10000: #隱藏b>1000
print(5)
else:
print(4)
else:#隱藏b<1000
if b >= 100:
print(3)
elif b>=10:
print(2)
else:
print(1)
python if語句,while語句
一,if語句 python中最常用的判斷語句,基本格式 1.if else格式 if 條件 結果else 結果 if 條件 滿足條件執行 else if條件不滿足就走這段 ageofoldboy 48 if ageofoldboy 50 print too old,time to retire.el...
python if 語句的練習
1 if語句的練習 cars aodi bmw falali lanbojini for car in cars if car bmw print car.upper else print car.lower 2 外星人顏色的練習 alien color green yellow red if al...
Python if語句知識點用法總結
計算機之所以能做很多自動化的任務,因為它可以自己做條件判斷。比如,輸入使用者年齡,根據年齡列印不同的內容,在python程式中,可以用if語句實現 age 20 if age 18 print your age is age print adult print end 注意 python 的縮排規則...