70.8k views
2 votes
Write a function (goDisplay) that has a parameter (totalSales). The function will print the following sentence with the parameter inserted in the blank space. Make sure to format the output to 2 decimal places.

Output: The total sales amount is ____ for 2022

User MaxZ
by
7.0k points

1 Answer

6 votes

Answer:Here is an example function (goDisplay) in Python that takes a totalSales parameter and prints a sentence with the parameter inserted in the blank space:

python

Copy code

def goDisplay(totalSales):

print("The total sales for the day were $%.2f." % totalSales)

This function uses string formatting to insert the totalSales parameter into the sentence, and rounds the output to 2 decimal places using the "%.2f" format specifier. You can call this function with any value for totalSales to display the total sales for the day in the formatted sentence. For example:

python

Copy code

goDisplay(1234.56) # Output: The total sales for the day were $1234.56.

goDisplay(789.123) # Output: The total sales for the day were $789.12.

Step-by-step explanation:

User Vladimir Panchenko
by
7.3k points