I am going through the official Python tutorial, and it says
One particular module deserves some attention: sys, which is built into every Python interpreter.
However, if I start the python interpreter and type, for example, sys.path, I get a NameError: name sys is not defined.
Thus, I need to import sys if I want to have access to it.
So what does it mean that it is 'built into every python interpreter' ?
sys. Surprisingly,sys.pathjust works.