As it turns out the answer is always simple.
Here is a small sample module with a simple way to show it in a main
definition:
def five(enterAnumber,sumation):
global helper
helper = enterAnumber + sumation
def isTheNumber():
return helper
Here is how to show it in a main
definition:
import TestPy
def main():
atest = TestPy
atest.five(5,8)
print(atest.isTheNumber())
if __name__ == '__main__':
main()
This simple code works just like that, and it will execute. I hope it helps.