How-to articles, tricks, and solutions about DO-WHILE
How to emulate a do-while loop?
In Python, you can emulate a do-while loop by using a while True loop with a break statement.