Construir un divisor de cuentas - Step 4

Cuéntanos qué está pasando:

Me pide poner un espacio pero ya lo tengo, ¿como lo soluciono?

Tu código hasta ahora

running_total = 0
num_of_friends = 4
appetizers = 37.89
main_courses = 57.34
desserts = 39.39
# User Editable Region
drinks = 6.36
running_total += appetizers + main_courses + desserts + drinks
print("Total bill so far:", running_total)
# User Editable Region

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36

Información del desafío:

Construir un divisor de cuentas - Step 4

Enlace de GitHub: i18n-curriculum/curriculum/challenges/espanol/blocks/workshop-bill-splitter/6982684f3a25f379e195a5fc.md at main · freeCodeCamp/i18n-curriculum · GitHub

Welcome to the forum @jimenez.llata,

This is your actual issue:

The starting code was:

drinks = 64.21

Whenever you change the starting code, it causes the tests to fail, so you may want to reset this step and try again.

Happy coding