1def main():
2 print("Hello World!")
3
4if __name__ == "__main__":
5 main()
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
1# While loop counting to 10 in 2's
2
3i = 2
4
5while i <= 10: # While i is less than or equal 10, it will add 2
6 print(i)
7 i = i + 2