14
¿Emular un bucle do-while en Python?
Necesito emular un ciclo do-while en un programa Python. Desafortunadamente, el siguiente código directo no funciona: list_of_ints = [ 1, 2, 3 ] iterator = list_of_ints.__iter__() element = None while True: if element: print element try: element = iterator.next() except StopIteration: break print "done" En lugar de "1,2,3, hecho", imprime …
799
python
while-loop
do-while