0
Multiple print
How to interpret this code and what is the output of this code please explain more deeply because I'm new in python print('print("print")')
1 Antwort
+ 3
Indicating your multiple print commands by 1,2,3
1print('2print("3print")')
First execution will be print command 1 and output is
print("print")
we have marked it as
2print("3print")