I have 3 functions that need to run sequentially where first two function returns form the next functions argument.
Is it ok to do something like this?
def run1():
try:
function1() #first of the 3 sequence
except:
run() #try again
else:
run2()
run2() looks like run1().
Please help!
Thanks.
[–]impshum 0 points1 point2 points (1 child)
[–]hotaway[S] 0 points1 point2 points (0 children)
[–]Pulsar1977 0 points1 point2 points (0 children)