Which of the statements about modules is false?
When a module is loaded, a compiled version of the module with file extension .pyc is automatically produced in __pycache__
dir() built-in function provides the items in the namespace of the main module.
In the from ..... import form of import, identifiers beginning with two underscores are private and aren’t imported
In the from .. import form of import, all identifiers regardless of whether they are private or public are imported.
In the from .. import form of import, the private identifiers beginning with two underscores are not imported
Comment here: