import mymodule def main(): x = 1 y = 3 print(mymodule.f(x, y)) print(f'Hello from {__name__}') if __name__ == '__main__': main()