What do you think would be the best way to write this structure
if testA:
actionA()
if testB:
actionB()
if textC:
actionC()
else:
actionDefault()
else:
actionDefault()
else:
actionDefault()
if I want to write only one call to actionDefault() ?