In python I have many functions likes the ones below. I would like to run all the functions whose name matches setup_*
without having to explicitly call them from main. The order in which the functions are run is not important. How can I do this in python?
def setup_1():
....
def setup_2():
....
def setup_3():
...
...
if __name__ == '__main__':
setup_*()