
Victor Daniel Aguirre Gil
Preguntastudent•hace 6 años
En el minuto 9:08 *(asterisco) y **(doble asterisco) ¿No son apuntadores?

Danelia Sanchez Sanchez
student•hace 6 años
No,
*args
**kwargs
def myFunction(*args, **kwargs): print(args) print(kwargs) myFunction(1, 2, 3, 4, x=5, x=7) #Salida >>> (1, 2, 3, 4) # args >>> {'x': 5, 'y': 7} # kwargs