While...Loop
x=1
while x<10:
print(x)
x=x+1
print("end of while loop")
y=1
while print("this is something"):
print(y)
y=y+1
print("end of while loop")INFO
x=1
while x<10:
print(x)
x=x+1
print("end of while loop")
y=1
while print("this is something"):
print(y)
y=y+1
print("end of while loop")