Build a Bill Splitter: Step 4

I am not sure what I am doing wrong here.

running_total = 0

num_of_friends = 4

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

This is my code so far:
running_total += appetizers + main_courses + desserts + drinks
print('Total bill so far: ', running_total)

Can you tell me where I may have made a mistake?

Welcome to the forum @jwhite !

There should be no space after the colon.

In the future, if you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Happy coding!

Got it. Thank you so much!

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.