2022-09-21 Python 三項演算子 なのでこんなかんじになる x = 101 s = 'odd' if x % 2 else 'even' print(s) # odd ネタ元 atmarkit.itmedia.co.jp