Build a Bill Splitter - Step 4

Tell us what’s happening:

I am stuck in this step and whatever I try gives me an error. Could someone please help me?

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15

Challenge Information:

Build a Bill Splitter - Step 4

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-bill-splitter/6982684f3a25f379e195a5fc.md at main · freeCodeCamp/freeCodeCamp · GitHub

looking at this, there is a quote in there, ' then a comma, ,, then a +

is that a type of syntax you have learned previously?

I have just taken the two parentheses surrounding the running_total away and left just the parentheses of print and it was solved. Thank you very much for your help :wink: