私はPython 2.7を使用しています...私が直面している問題は、このコードを使用するときです
print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you weigh?",
weight = raw_input()
print "So, you're %r old, %r tall and %r heavy." % (
age, height, weight)
出力は次のようになります-
How old are you? 35
How tall are you? 6'2"
How much do you weigh? 180lbs
So, you're '35' old, '6\'2"' tall and '180lbs' heavy.
しかし、35, 180 lbs ang 6 2" 前後の出力の 4 行目にある単一引用符は必要ありません。