It states in the Python documentation that pickle is not secure and shouldn\'t parse untrusted user input. If you research this; almost all examples demonstrat
pickle
Importing a module only adds it to the local namespace, which is not necessarily the one you're in. Except when it doesn't:
>>> dir() ['__builtins__', '__doc__', '__name__', '__package__'] >>> __import__('os') >>> dir() ['__builtins__', '__doc__', '__name__', '__package__']