【Python3入門】標準入力, 奇数か偶数か判断(if文) 2022年7月31日 / Digipoke # 標準入力 line = int(input()) # 2で割って余りで判断 if line % 2 == 0: print("even") else: print("odd")