hacer una aplicacion de celular para ayudar a mayores de edad en sus dudas
def app(question): if question == "Why is the sky blue?": return "The sky is blue because..." elif question == "What is the capital of Mexico?": return "The capital of Mexico is Mexico City" else: return "Sorry, I don't know" print(app("Why is the sky blue?"))