条件分岐
if 文
https://docs.python.org/ja/3/reference/compound_stmts.html#the-if-statement
match 文
https://docs.python.org/ja/3/reference/compound_stmts.html#the-match-statement
条件式
https://docs.python.org/ja/3/reference/expressions.html#conditional-expressions
いわゆる三項演算子
真の時実行される式 if 判定式 else 偽の時実行される式
関連
pass