0
input
What's the difference between print(1+1) and just 1+1 because I get the same answer when I click shift+enter(i am not sure what its called.. maybe transcription...??)
1 Answer
+ 4
If you use the interactive python console, both, print(1+1) and 1+1 give the same output. In a python code, print(1+1) will be executet, 1+1 will be also executed but not stored and gives no output.