标签: python python-2.7 python-3.x
在我的程序中,我使用了很多像这样的块:
while True: try: DO_SOMETHING() break except: pass
这样我才能继续努力直到成功"。但这似乎不是Pythonic。有没有优雅的方法来做到这一点?