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

Questions about programming?Chat with your personal AI assistant