Generation

generate functionWed, 26 Apr 2023

Agenda telefónica

agenda = {} def add_contact(name, number): agenda[name] = number def get_contact(name): return agenda[name] add_contact('Mario', '123456') get_contact('Mario') # 123456

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