if 条件式

Python 基础: Condition 条件式 if

一般 if 条件

a = 1
if a == 1:
    print('got a')
else:
    print('oops!')

单行 if

<条件成立的结果> if <条件> else <条件不成立的结果>

a = 1
home = 'Taiwan' if a == 1 else 'Taipei'
print(home)

else if 条件

a = 3
if a == 1:
    print('got a: 1')
elif a == 3:
    print('got a: 3')
else:
    print('oops!')