Python Refresher

Python in a Weekend - Strings

Print a string that tells a customer what the soup of the day is and what price it is.
                soup = 'Clam Chowder'
price = 2.57
            

Solution

                    soup = 'Clam Chowder'
price = 2.57

print(f'The soup of the day is {soup} and is ${price}.')
                

Here's some courses you might like: