0
Inside a single quote a double quote is there but on running it dose 'nt shows error ...... print('print("print")') ans wasnt er
4 Respuestas
+ 2
in python this will print ... print("print") as expected
+ 1
thank you
0
Which programming language?
What is probably happening, is the compiler (run-time or otherwise), is parsing 'print ("print")' as a string, just like it would with 'hello'.
The only print being parsed as a function call, is the first occurrence.
0
its python