0
What is the difference between print("1") and print(1)
What is the difference between print("1") and print(1)
2 Answers
+ 7
#try this
print(type("1"))
print(type(1))
+ 2
print("1") Will print 1 as a string and print(1) will print 1 as an integer.
What is the difference between print("1") and print(1)