Python 2024.11.05 0 分岐処理 # 読み込んだ整数値は正の値か(その1)n = int(input('整数値:'))if n > 0: print('その値は正です。')C:>python xxx.py整数値:10 (画面入力)その値は正です。# 読み python , 分岐処理 , if文