** EDIT:!***これは解決されている*あなたが投票するのに十分な古い場合を教えてくれるプログラムをプログラミングの検出は、入力はintですかSTR場合•Pythonの2.7
イム。そして、あなたの年齢を聞かれたら、「数字ではなく文字を入力してください」というような、数字の代わりに文字を入力すると、あることを言いたいと思います。ここで私が今持っているコードです:try-except-else
で
name = raw_input("What is your name?: ")
print("")
print("Hello, "+name+".\n")
print("Today we will tell you if you are old enough to vote.")
age = input("How old are you?: ")
if age >= 18:
print("You are old enough to vote, "+name+".")
elif age < 18:
print("Sorry, but you are not old enough to vote, "+name+".")
を、すなわちこんにちは、%s「は 'と.'' 'すべてのものを' 'こんにちは、' +名+を交換してください'。 %name'文字列の書式設定のチュートリアルがあります:https://pyformat.info/ –