how to print a number and a number using the same print command code example
Example: How do you print a integer in python
x = 7
print('Number: ' + str(x))
#str() turns anything inside to a string which allows you to
#add it to another/different string