def simulate_daily_life(activity_index):
daily_activities = [
"Wake up",
"Get dressed",
"Have breakfast",
"Go to school",
"Lunch break",
"Continue working",
"Return home",
"Have dinner",
"Relax",
"Go to bed",
]
if activity_index < len(daily_activities):
print(f"Now: {daily_activities[activity_index]}")
simulate_daily_life(activity_index + 1)
else:
print("End of the day.")
print("A new day begins.")
simulate_daily_life(0)
A new day begins.
Now: Wake up
Now: Get dressed
Now: Have breakfast
Now: Go to school
Now: Lunch break
Now: Continue working
Now: Return home
Now: Have dinner
Now: Relax
Now: Go to bed
End of the day.