我是Python的初學者,剛剛得知python在每個print語句的末尾隱式地打印了一行。對於大多數語句,我都有試過。Python語句結尾處沒有隱含的新行
number = 23
guess = int(input("Enter an integer"))
if number == guess:
print('guessed the number correctly')
else:
print('That was an incorrect guess')
當我執行上面的代碼時,popwindow出現了,我把它放在了23.這是我得到的輸出。
Enter an integerguessed the number correctly
我沒有使用標準的python,而是使用了一個名爲pythonfiddle的在線python IDE。
你在哪裏執行此操作? – thefourtheye
在正常情況下,在「輸入一個整數」和「猜對數字」之間會出現'23'和一個換行符,因爲在正常情況下,您會在那裏輸入您的輸入。 – user2357112
該代碼在終端/ cmd shell中按預期工作。 看[screencast](http://asciinema.org/a/7255)。 – falsetru