why this works > varhelp = __import__("sys")
and this doesn't> varhelp = __import__("sys.path")
the second one throws:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named path
then how to achieve the second one?