Skip to content

Instantly share code, notes, and snippets.

@anandtripathi5
Created February 13, 2022 23:47
Show Gist options
  • Save anandtripathi5/d347d6f68a81ed8946f991e05423d60e to your computer and use it in GitHub Desktop.
Save anandtripathi5/d347d6f68a81ed8946f991e05423d60e to your computer and use it in GitHub Desktop.
Explicit is better than implicit
from .. import some_module
# or
from foo.bar import some_module
# another example
from foo.bar.some_module import *
# or
from foo.bar.some_module import specific_variable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment