# Python does not have a do-while loop. You can however simulate# it by using a while loop over True and breaking when a certain# condition is met.# Example:
i = 1whileTrue:
print(i)
i = i + 1if(i > 3):
break
#there are 2 ways to make a while loop in python#first way -whileTrue:
(#what ever you want in the loop)#second way - while1:
(#what ever you want in the loop)