You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Answer, it looks at the paths in sys.path in order:
importsys
print(sys.path)
# The first path is the folder containing the file that you ran.
# The second path is the environment variable PYTHONPATH, if it is set.
# We won't cover environment variables in depth here, but they are variables you can set in your operating system. It can help Python find things to import when the folder structure is ambiguous.