##################################
# THERE IS NO DO-WHILE IN PYTHON #
##################################
## BEACUSE YOU DON'T NEED IT
# Here is the alternative
while True: # INFINITE LOOP (not really) # This is like do
'''
stuff to do
'''
if not (condition): # this is like while (condition)
break