Python - Modules and Code Organization
Given this code snippet:
What will
import sys print(sys.path[0])
What will
sys.path[0] usually contain when running a script?import sys print(sys.path[0])
sys.path[0] usually contain when running a script?sys.path is usually the directory of the script being executed.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions