MCPcopy
hub / github.com/midudev/curso-python / mostrar_informacion_de

Function mostrar_informacion_de

03_loops/04_functions.py:78–80  ·  view source on GitHub ↗
(**kwargs)

Source from the content-addressed store, hash-verified

76
77# Argumentos de clave-valor variable (**kwargs):
78def mostrar_informacion_de(**kwargs):
79 for clave, valor in kwargs.items():
80 print(f"{clave}: {valor}")
81
82mostrar_informacion_de(nombre="midudev", edad=25, sexo="gato")
83print("\n")

Callers 1

04_functions.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected