I don\'t undestand how this code works:
i = 1 while False: if i % 5 == 0: break i = i + 2 print(i)
what does while Fa
while Fa
while True:
means that it will loop forever.
while False:
means it won't execute.