back to challenges\ncreate a variable for morning\nuse three input() commands to ask what they would do in…

back to challenges\ncreate a variable for morning\nuse three input() commands to ask what they would do in the morning, afternoon, and evening.\nassign each input to its correct variable.\nprint each variable in a print statement.\ninclude a comment at the top of the code.\ncreate a variable for afternoon\ncreate a variable for evening
Answer
Explanation:
Step1: Escribir el comentario
Este programa solicita actividades para mañana, tarde y noche
Step2: Crear variables y usar input
morning = input("¿Qué harías en la mañana? ") afternoon = input("¿Qué harías en la tarde? ") evening = input("¿Qué harías en la noche? ")
Step3: Imprimir variables
print(morning) print(afternoon) print(evening)
Answer:
Este programa solicita actividades para mañana, tarde y noche
morning = input("¿Qué harías en la mañana? ") afternoon = input("¿Qué harías en la tarde? ") evening = input("¿Qué harías en la noche? ") print(morning) print(afternoon) print(evening)