So, I'm currently planning a program using the Easygui module,
The problem I am facing is, when I press the cancel button on the GUI, it just continues, so to get past this, I want to add something to my program like:
if Easygui_Variable is None:
quit()
However, the problem I face is, I am going to have multiple easygui boxes which allow the user to press cancel, and I don't want to be using
if Easygui_Variable is None:
quit()
every time, so is there anyway I can do the above for multiple variables at a time, to make sure my program is most efficient.