私は、自分の在庫にアイテムが含まれていてもいなくても、テキストベースゲームのゲームプレイがどのように機能するのかを調整しようとしています。それは私が私が私が作ったものを誤って見るように見えることはできませんコードインベントリヘルプPython
else "comb" not in inventory and "razor" in inventory:
のこの行の構文エラーを持っていることを私に言っている
print ("You are back in your cell. You saw your bed, broken sink, grotty toilet, cut up jumpsuit")
if "comb" and "razor" in inventory:
print ("and the table with the empty bottle.")
else "comb" not in inventory and "razor" in inventory:
print ("and the table with the empty bottle and comb.")
else "razor" not in inventory and "comb" in inventory:
print ("and the table with the empty bottle and razor")
、私は初心者ですので、おそらくそこにあります私のニーズを実行する別の方法です。
「else」ではなく「elif」を意味すると思います。 – khelwood