1counter = 1
2while counter < 11:
3 print(counter, end = ‘ ‘)
4 counter=(counter + 1)
5
1x=16
2y=2
3z=0
4while z does not equal 6 :
5 x= sqrt (x) #squrt = square root
6 y=y*y
7 z=z+2
1counter = 1
2while counter < 3:
3 print(counter, end = ‘ ‘)
4 counter=(counter + 1)
5