私は、次の質問をしたい:Python:入力プロンプトで変数を呼び出す方法は?
What is the team name?
How many points did (team_name) score?
私はこれを試したし、戻ってエラーを得ている:
team_name = input("What is the team name? ")
points = input("How many points did", team_name, "score? ")
助けてください!
私は、次の質問をしたい:Python:入力プロンプトで変数を呼び出す方法は?
What is the team name?
How many points did (team_name) score?
私はこれを試したし、戻ってエラーを得ている:
team_name = input("What is the team name? ")
points = input("How many points did", team_name, "score? ")
助けてください!
どのようなエラーが表示されますか?
ここでやろうとしている文字列を連結するのではなく、2行目の入力に3つのパラメータを渡しているということはかなり自信があります。
試してみてください。
points = input("How many points did " + str(team_name) + " score?")
はいこれは問題を修正しました、ありがとうございます! –
問題ありません!解決策としての印をつけることは常に役に立ちます:) – igoldthwaite
はここでこれを行うのpython3.6の方法です:
points = input(f"How many points did {team_name} score?")
あなたが取得しているエラーは何ですか?環境設定を確認してください。コードの構文が正しいようです。 – user1211