0
After typing answer for input() there is no output
so a simple formula was as such: X = input() Y = input() Print(X + Y) However, after pressing run and typing in the input respectively, the output bar appeared and quickly disappeared without showing any result. Is anyone else facing the same issue?
2 Respostas
+ 1
It is print(), not Print()
You need to separate the two inputs by line breaks when you insert them into the pop-up window, for example
a
b
<submit button>
0
Yeahh it meant print() heh it’s auto caps when using the ipad.
I was going through the Python Core lesson 14.1
Even when running the default code:
x = input()
print(x)
After typing something in the pop up box, the output just buffers then closed by itself without having any actual output.