Repeat a block of code while a condition is true using while.
while
Ensure loop condition changes; use break to exit loops.
break
count = 0 while count < 5: print(count) count += 1 print("Done")