0
difference between "35" and 35
what's the real difference between "35" and 35 when printing output while type conversion
2 odpowiedzi
+ 3
When you print an integer, it is converted to a string.
+ 1
"35" is string, where as 35 is integer.
While printing a formatted string, integer has to be changed to string or use {} .format()