0
Any one explain print inside print statement in python along with example..
2 Answers
+ 3
Can you show us what you mean with print inside print.
Also which language do you refeer to.
+ 2
A print inside another print statement. It will print None because print() does not return a value
print(print("Hello World"))
>>> None