2024-11-23 03:05
1123 hw pa1
#Boolean 布林值
for_sale = True
if for_sale:
print("此項目正在出售")
else:
print("此項目未出售")
#Boolean 布林值
for_sale = False #假
if for_sale:
print("此項目正在出售")
else:
print("此項目未出售")
[範例:此網站有成人內容]
#if else
age = int(input("請輸入你的年齡:"))
if age>=18:
print("你可以瀏覽此網頁")
else:
print("你必須年滿18歲才可瀏覽此網頁")