BASICS YOUR TURN #1 a = 8 a = a**2 if a >= 100: print(a, 'is big') elif a >= 50: print(a, 'is medium') else: print('too small to bother with') BASICS YOUR TURN #2 for i in items: if i['size'] > low and i['size'] < high: print(i['color'])