Iterators - While Loop
While loop can also be use for iteration but while loop is typically use when looping over some condition Example of While loop some_condition = True while some_condition: print("Hello World!") – This code will have an infinite loop, basically it will run forever until the computer crash. It will stop when I hit Ctrl + C to interrupt it, or if there is a break keyword somewhere in the code block....