Generation

generate functionFri, 28 Apr 2023

En otra función deberá permitir imprimir en la pantalla los datos de las listas de forma ordenada. Nombre y edad.

def print_ordered_dict(d): for k,v in d.items(): print(k,v) print_ordered_dict(users)

Want to kickstart your project?Use the new AI Studio to create your code