我的程序有以下scturcutre
大约有20个附加条件,只要不满足其中一个条件,程序就应该返回起点。使用goto语句可以很容易地解决这个问题。但是,在Python中,这不是一个选项。任何建议都会被理解为如何优雅地实现这一点。
答案 0 :(得分:0)
你应该给我们代码,或者至少是一个显示结构真实情况的例子。
也许你可以这样做:
take screenshot
condition = (condition a) and (condition b) and ... and (condition z)
while (not condition):
take screenshot
condition = (condition a) and (condition b) and ... and (condition z)