Build a Bill Splitter - Step 5

Tell us what’s happening:

my answer shown as not correect.i have already checked the answer

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
print('Total bill so far:', running_total)
tip = running_total *0.25
print('Tip amount: '+ str(tip))

# User Editable Region



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

Challenge Information:

Build a Bill Splitter - Step 5

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

Welcome to the forum @mhdsahal161!

Please try using the same syntax for this print that you used for running_total so you do not need to apply str.

Happy coding!