What is the best practice for automatically executing all of the functions in the script? Take for example this script:
def a():
return 1
def b():
return 100
def c():
return 1000
How would I execute all of these functions without performing the following after running the script:
>>>a()
1
>>>b()
100
>>>c()
1000