How can you write a loop in Python that executes its body at least once?
Use a for loop.
Use a while loop with the condition always True and a break to exit inside the loop.
Set the loop condition to False.
Use a continue statement.
This question is part of this quiz :
Python While Loop Quiz