I know that in Python 3, print
is now a function.
However, I have two variables that I wish to include in a print function.
foo = 5
fee = 3
The following gives an error:
print('Foos present:' + foo, 'Fees present:' + fee)
TypeError: Can't convert 'float' object to str implicitly