If else elif控制流程:
for_sale = True
if for_sale:
print('此項目正在出售')
else:
print('此項目未出售')
此項目正在出售
for_sale = False
if for_sale:
print('此項目正在出售')
else:
print('此項目未出售')
此項目未出售
age = int(input("請輸入你的年齡:"))
if age >= 18:
print("你可以註冊")
else:
print("你需要年滿18歲才能註冊")
請輸入你的年齡:25
你可以註冊
age = int(input("請輸入你的年齡:"))
if age >= 100:
print("你的年齡太大無法註冊")
elif age >= 18:
print("你可以註冊")
elif age < 0:
print("你尚未出生無法註冊")
else:
print("你需要年滿18歲才能註冊")
請輸入你的年齡:120
你的年齡太大無法註冊