answers Graded A+
4.1.4: Do You Have a Cat? | CodeHS - ✅✅"""
This program should declare a boolean that describes whether or
not you have a cat. Then you should print out an informative
message to the user.
"""
have_cat = False
print("Have a cat? " + str(have_cat))
4.2.6: Can You Graduate? | CodeHS - ✅✅# Enter your code here
has_enough_units = False
has_met_requirements = False
can_graduate = has_enough_units or has_met_requirements
print("Can graduate? " + str(can_graduate))
4.2.7: School's Out | CodeHS - ✅✅# Enter your code here
is_weekday = True
is_holiday = True
no_school_today = is_weekday or not is_holiday
print("There is no school today: " + str(no_school_today))
4.3.5: Rolling Dice | CodeHS - ✅✅# Enter your code here
, dice_first=int(input("first die? "))
print(str(dice_first))
dice_second=int(input("second die? "))
print(str(dice_second))
rolled_doubles= dice_first == dice_second
print("Rolled doubles? " + str(rolled_doubles))
4.3.6: All Star | CodeHS - ✅✅# Enter your code here
points=int(input("Points per game? "))
rebounds=int(input("Rebounds per game? "))
assist=int(input("Assist per game? "))
all_star= points>=25 or (points>=10 and rebounds>=10 and assist>=10)
print("Is all star? " + str(all_star))
4.4.7: Teenagers | CodeHS - ✅✅# Enter your code here
age = int(input("What is your age? "))
if age >= 13 and age<=19:
print("Yes, you are a teenager.")
else:
print("No, you are a teenager.")
4.4.8: Meal Planner | CodeHS - ✅✅# Enter your code here
meal = input("What meal are you going to eat?")
if meal == "breakfast":