+ 4
"spam"+'eggs' not working on this app's virtual command prompt
It displays No output on clicking run
1 ответ
+ 5
You need to use the print statement to see the output. codeplayground won't echo the python output without it.
print("spam"+'eggs')
It displays No output on clicking run