Saludos, seguí el ejercicio en Colab
def velocidad(espacio, tiempo):
v = espacio / tiempo
print(f'Velocidad: {v} m/s')
y me dio este... TypeError
Velocidad: 5.0 m/s
---------------------------------------------------------------------------
TypeError Traceback (most recent call last) in <cell line: 1>() ----> 1 velocidad(100, 20)
in velocidad(espacio, tiempo) 2 v = espacio / tiempo 3 print(f'Velocidad: {v} m/s') ----> 4 velocidad(100/20)
TypeError: velocidad() missing 1 required positional argument: 'tiempo'
no comprendo porque