2017-02-08 18 views
0

私は、次の質問をしたい: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? ") 

助けてください!

+1

あなたが取得しているエラーは何ですか?環境設定を確認してください。コードの構文が正しいようです。 – user1211

答えて

1

どのようなエラーが表示されますか?

ここでやろうとしている文字列を連結するのではなく、2行目の入力に3つのパラメータを渡しているということはかなり自信があります。

試してみてください。

points = input("How many points did " + str(team_name) + " score?") 
+0

はいこれは問題を修正しました、ありがとうございます! –

+1

問題ありません!解決策としての印をつけることは常に役に立ちます:) – igoldthwaite

1

はここでこれを行うのpython3.6の方法です:

points = input(f"How many points did {team_name} score?") 
関連する問題