Computer Science

Any folder having .py files is a Python package.

Python Libraries

3 Likes

Answer

False

Reason — Not all folders having multiple .py files are packages. In order for a folder containing Python files to be recognized as a package, an __init__.py file must be part of the folder.

Answered By

1 Like


Related Questions