Build a Bill Splitter - Step 5

Tell us what’s happening:

I’m not sure why my freecodecamp isn’t letting me continue, I think its right but I cannot find the problem

Your code so far

running_total = 0

num_of_friends = 4

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

running_total += appetizers + main_courses + desserts + drinks
tip = running_total * 0.25

# User Editable Region

print('Total bill so far: ', running_total)
print('Tip amount: ', tip)

# 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/146.0.0.0 Safari/537.36

Challenge Information:

Build a Bill Splitter - Step 5

Welcome to the forum @arunharisamra !

print('Total bill so far:', running_total)

You have changed this line in the starting code, which will cause the tests to fail. Please reset this step and try again.

Happy coding!

After doing that I still have an issue.

There should be no space after the colon.

Thank you very much, I was confused because it said to follow it with a space.