-3
當我執行下面的代碼時,它不打印(「yes we can can」),它唯一的打印(「all the best」)。 我在Visual Studio中運行代碼。 如果在python中不打印塊,則執行語句。如果在python中沒有打印塊,執行語句
代碼:
team = input("your favorite team")
if team == "Ferrari" :
print("yes we can")
print("all the best")
可以請人幫我。
和你輸入什麼? [mcve] – Julien
@JulienBernu:我提供的輸入是法拉利 –
除非您的輸入是「法拉利」*沒有尾隨換行符*「我們可以」不會被打印。看看[這個問題](http://stackoverflow.com/questions/275018/how-can-i-remove-chomp-a-newline-in-python)。 – SethMMorton