0
why is this wrong? print("print("print")")
2 Answers
+ 5
string is bunch of characters between single or double quotes so python interpreter sees two strings with print( in between which confuses it.if you want to output print("print") , you should use single quotes around it.
0
thank you!