-6
私は文法ゲーム(Python)に取り組んでいますが、動作していません。どうすれば修正できますか? コード:Grammer Game(Python)が動作しない、どうすれば修正できますか?
print("Welcome! Type in 'Enter' (without apostrophes) to begin")
start = input
if start == "Enter":
print "Fill in the blanks: I __ a boy"
answer = input
if answer != "am":
print "Wrong answer! Try again: I __ a boy"
if answer == "am":
print "Congratulations!"
それは、これを返します。
Welcome! Type in 'Enter' (without apostrophes) to begin Wrong answer! Try again: I __ a boy