loop = 0 while loop < 10: if loop < 3: print (loop, "is smaller than 3.") elif loop < 7: print (loop, "is smaller than 7.") else: print (loop, "is not smaller than 7.") loop += 1