Test Topic List: - quick maths: %, / vs // NOT the super hard stuff, just basic operators - if blocks - Boolean maths and, or, not - nested ifs: if blocks within if blocks Example if block with nesting Situation: Must get dressed to do outside -> must decide what to wear based on weather and day day = 3 #sun 0, mon 1, tues 2, wed 3, thurs 4 fri 5 sat 6 weather = "foggy" #sunny snow rain hail windy = True if day < 6 and day > 0: print("THE uniform, unmodified") else: if weather == "sunny": print("shorts") elif weather == "snow": print("not shorts") elif weather == "rain": print("fisherman hat") elif weather == "hail": print("helmet? riot sheild") if windy == True: print("def riot sheild") else" print("just the helmet then") elif weather == "foggy": print("miners headlamp")