0
why does print(print(1))
says None 1 how do we fix it
2 Answers
+ 2
You use 2 print inside each other.
So print(1) will print 1 and return nothing to another print.
So that print dont have what to print and give you "None"
says None 1 how do we fix it