HW Hack 1

def dailyActivities():
    dailyActivities = [
        "Wake up",
        "Take a shower",
        "Go to school",
        "Go to the gym",
        "Eat lunch",
        "Come home",
        "Do homework",
        "Eat dinner",
        "Study",
        "Go to bed",
    ]

  
    
    for activity in dailyActivities:
        print(f"Current Activity: {activity}")
    
    print("DAY END.")

dailyActivities()
Current Activity: Wake up
Current Activity: Take a shower
Current Activity: Go to school
Current Activity: Go to the gym
Current Activity: Eat lunch
Current Activity: Come home
Current Activity: Do homework
Current Activity: Eat dinner
Current Activity: Study
Current Activity: Go to bed
DAY END.

Homework Hack 2

x = 3
def fibonacci(x):
    if x==1:
        return(0)
    if x == 2:
        return(1)
   
    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