0
why I cannot perform the right output in code playground
I type 2+2 in the code playground, but the output is no output. Why did it happen?
2 Respuestas
+ 1
Because it is not interactif, you have to explicitly print it like this:
print(2+2)
0
thank you!