在Python中模擬do-while循環?

我須要在Python程序中模擬do-while循環。 不幸的是,如下簡單的代碼不起做用: python list_of_ints = [ 1, 2, 3 ] iterator = list_of_ints.__iter__() element = None while True: if element: print element try: element = iter
相關文章
相關標籤/搜索