Skip to content

Instantly share code, notes, and snippets.

@stigok
Last active February 6, 2018 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stigok/f9367d682a0dcdf5655a3cb51584f6f7 to your computer and use it in GitHub Desktop.
Save stigok/f9367d682a0dcdf5655a3cb51584f6f7 to your computer and use it in GitHub Desktop.
Python 3: how to import methods from a different file in same folder
def test():
print("Test method")
if __name__ == "__main__":
print("Main method")
from file1 import test as test_method
print("Hello, world!")
test_method()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment