0
output
is it the same when writing ? >>>"hello world" >>>print("hello world")
2 Respuestas
+ 4
Yes, it is the same when writing in an interpreter. If you type the name of an object, either it is a variable, function, class.. the interpreter will show you its value.
The intepreter is made to quickly test statements, so, in most cases, you don't need to use the print() function at all.
+ 2
Hi. No.