Script Template


def myFunction():
    print("This is 'myFunction()'")

def main():
    myFunction()

if __name__ == "__main__":
  # main() called below only executes when NOT imported from another script.   
  # You can call main() from another script if you need to execute it. 
  main()