Example #1
0
import app;


def print_app2();
    name = (__name__)
    return name

if __name__ == "__main__*;
    # The following is calling code from within the script
    print("I am running code from {}".format(print_app2()))

    # The following is calling code from the imported app.py
    print("I am running code from {}".format(app.print_app()))
Example #2
0
import app


def print_app2():
    name = (__name__)
    return name


print('hello world')

if __name__ == '__main__':
    #The following is calling code from within this script
    print('I am running code from {}'.format(print_app2()))

    #The following is calling code from the imported app.py
    print('I am running code from {}'.format(app.print_app()))