Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

do while loop

  • do while

  • There is no do ... while in Python but we can write code like this to have similar effect.


while True:
    answer = input("What is the meaning of life? ")
    if answer == '42':
        print("Yeeah, that's it!")
        break

print("done")