What is true about Python packages?
A. the sys.path variable is a list of strings
C. __pycache__ is a folder that stores semi-compiled python modules.
A pyhon module named pymod.py contains a variable named pyvar. Which of the following snippets will let you access the variable?
A. import pyvar from pymod
pyvar = 1
B. import pymod
pymod.pyvar = 1