hits = 0 for i in range(1, 51): if i % 7 == 0: hits = hits + 1 print(hits)