用法:
if 條件:
執行動作
a = int(input())
if a >= 90:
print('成績為A+')
# 成績為A+
用法:
if 條件:
執行動作
else:
執行動作
用法:
if 條件:
執行動作1
elif 條件:
執行動作2
else:
執行動作3
score = 60
if score >= 59:
print('good')
elif score == 60:
print('great')
else:
print('not bad')
# good
巢狀條件判斷
a = int(input())
b = int(input())
c = int(input())
if a + b > c and b + c > a and c + a > b:
if a == b and b == c:
print('正三角形')
else:
print('三角形')
else:
print('非三角形')