Hi all
So there’s two ways to print a concatenated string with a number in it:
- Make the number a string first with the str() function, then print(it + with + other + stuff)
- Don’t do 1, just print(it, inside, this, function)
What’s the reason behind these two methods? Why use 1) and not 2) ?