WhileLoop.py

#While loop example

i = 0

while i<5:

    print ( ' Hello ',i)

    i +=  1