1# Python does not have a do-while loop. You can however simulate
2# it by using a while loop over True and breaking when a certain
3# condition is met.
4# Example:
5i = 1
6while True:
7 print(i)
8 i = i + 1
9 if(i > 3):
10 break
1while True:
2 print("Running")
3 #<infinite>: "Running" untill you press "ctrl + c" in termenal
4
1j = 0
2while j < 3:
3 print("hello") # Or whatever you want
4 j += 1
5#This runs the loop until reaches 3 and above