Build a Bill Splitter - Step 4

Tell us what’s happening:

Can I maybe get some help I have been on this step for 2 days and I can not figure it out

Your code so far

running_total = 0

num_of_friends = 4

appetizers = 37.89
main_courses = 57.34
desserts = 39.39
drinks = 64.21


# User Editable Region

running_total = (appetizers) + (main_courses) + (desserts) + (drinks)
print("Total bill so far: ") + (running_total)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 Edg/145.0.0.0

Challenge Information:

Build a Bill Splitter - Step 4

please do not use unnecessary brackets here

are you sure that this is the way to print also the value of running_total? remember that print will print what you write between the brackets (), not after it

Ok after trying everything i saw in the forum and guessing around by myself i found that it expects you to use fstrings, so just go with the f”text{variable}” form and print exactly what the test wants and it will pass