我以初學者的Python當然,這是活性的教訓之一:輸出打印轉義字符[]
我的代碼:
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)
我再通過PowerShell和投入運行數據時提示,但是當我在5'9" 鍵入高度和它打印出的最後一個字符串,它看起來像這樣輸入:
So, you're '24' old, '5\'9"' tall and '140 lbs' heavy.
我怎麼反斜槓走開
謝謝你向我解釋這個!我仍然試圖理解不同輸入格式之間的差異。 Tyty! – bootoons
不用擔心!如果這個或摩西的答案回答了你的問題,不要忘記用左邊的複選標記來接受其中的一個;這將把你的問題排除在需要答案的問題隊列之外。歡迎來到StackOverflow! –