前提・実現したいこと
2つの数を入力させ,その大小比較の結果を表示するプログラムcompare_numbers.pyを作成してみましょう。入力される数は整数とします。
実行例
Please input the first value: 5
Please input the second value: 8
8 is greater than 5.
Please input the first value: 4
Please input the second value: 4
4 is equal to 4.
というプログラミングを行いたいです。
発生している問題・エラーメッセージ
エラーメッセージ
File "Main.py", line 1
first value = int(input('Please input first value: '))
^
SyntaxError: invalid syntax
該当のソースコード
Python3
first value = int(input('Please input first value: '))
second value = int(input('Please input second value: '))
if first value > second value:
print(str(first value) + 'is greater than' + str(second value))
elif first value < second value:
print(str(second value) + 'is greater than' + str(first value))
else:
print(str(first value) + 'is equal to' + str(second value))
試したこと
インデントや()の数などは確認しました。
補足情報(FW/ツールのバージョンなど)
回答2件
あなたの回答
tips
プレビュー