Build a Bill Splitter - Step 4

Tell us what’s happening:

I need help on how I can sum up a running total using + operation to sum four courses cost that are in float format?

Your code so far

running_total = 0

num_of_friends = 4

appetizers = 37.89
main_courses = 57.34
desserts = 39.39

# User Editable Region

drinks = 64.21


# 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

Challenge Information:

Build a Bill Splitter - Step 4

you need to assign to running_total the sum of the 4 variables appetizers, main_courses, desserts and drinks

you need to use = to assign to the variable like you were doing so far

and then on the right of = you need to sum the variables using + between the variables, like you would do summing 4 numbers together 5 + 2 + 3 + 1