0
私のGCSE作業用のメニューをプログラムしようとしていますが、セミコロンで構文エラーが発生します。ここ は以下のプログラムです:セミコロンの構文エラー?
def choice() :
print = ("Welcome to the troubleshooting System")
print = ("")
print = ("a. Samsung")
print = ("")
print = ("b. Android")
print = ("")
print = ("c. Apple")
print = ("")
print = ("d. Blackberry")
print = ("")
print = ("e. Sony")
choice_input = input(str(" Please select the letter of the brand of phone that you are using")
if choice_input == "a":
Samsung()
elif choice_input == "b":
Android()
elif choice_input == "c":
Apple()
elif choice_input == "d":
Blackberry()
elif choice_input == "e":
Sony()
私は問題は「choice_input場合== 『A』:」であると思います助けてください!
「if」ステートメントで呼び出す関数を作成しましたか? – Inconnu
pythonでのインデント問題、 'Samsung()'はインデントされて一致する 'if'文に属するようにする必要があります。また、エラーがあると答えたときには、どの行にエラーがあるのかを含めるべきです – EdChum
' print = (「もの」) '??技術的には、これは間違っているわけではありませんが、あなたが期待することはしません。 – ForceBru