Friday , September 20 2024

During the first import of a module, Python deploys the pyc files in the directory called:

Questions BankCategory: Python Essentials 2During the first import of a module, Python deploys the pyc files in the directory called:
During the first import of a module, Python deploys the pyc files in the directory called:

  • Hashbang
  • __pycache__
  • __init__
  • Mymodules

Explanation: Remember that __pycache__ is a directory that contains bytecode (.pyc) cache files that are automatically generated by Python.

More Questions: Python Essentials 2 – Module 1 Test