money = 99
print("I have", money, "dollars.")
# Output: I have 99 dollars.
Create a program by taking the following steps:
Initialize a variable named money with the value 99
Use a single print() statement to display the text, "I have 99 dollars.". The print() parameters should include two pieces of quoted text and the money variable, separated by commas to automatically concatenate and convert the integer to a string.
The following example demonstrates the expected program output.
I have 99 dollars.
1 answer