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.
def fibonacci(x):
    if x==1:
        return(0) # First terminating statement is needed to set the value equal to 0 when x = 1
    if x == 2:
        return(1) # Second terminating statement is needed to set the value equal to 1 when x = 2

    else:
        return(fibonacci(x-1)+ fibonacci(x-2))


for i in range(8):    
    print(fibonacci(i+1))


0
1
1
2
3
5
8
13