module & packages Flashcards

1
Q

What is a Python module?

A

A Python module is a file containing Python code, such as functions, classes, and variables, that can be imported into other scripts.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you import a module in Python?

A

Using the import statement:

```python
import module_name
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the three types of Python modules?

A
  • Built-in modules (e.g., os, sys)
  • Third-party modules (installed via pip)
  • User-defined modules (custom .py files)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How is a Python module different from a JavaScript module?

A

Python modules use import, while JavaScript ES6 modules use import/export, and CommonJS uses require().

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you import a specific function from a module?

A

Using:

```python
from module_name import function_name
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why is from module import * considered bad practice?

A

It makes the code harder to read and can cause naming conflicts.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you access functions from an imported module?

A

Use dot notation:

```python
import module_name
module_name.function_name()
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What happens if Python can’t find the module you are trying to import?

A

It raises an ImportError exception.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In what order does Python search for a module?

A
  • Current directory
  • PYTHONPATH environment variable
  • Standard library directories
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a Python package?

A

A collection of multiple modules organized in a directory with an __init__.py file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How is a Python package different from a module?

A

A package is a directory containing multiple modules, while a module is a single file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is __init__.py used for in a package?

A

It marks a directory as a package and can contain initialization code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Can __init__.py be empty?

A

Yes, it just needs to exist for the directory to be recognized as a package.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do you import a module from a package?

A

Using:

```python
from package_name import module_name
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How can __init__.py simplify imports?

A

By importing submodules inside it:

```python
from .module1 import function1
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What happens when a module is imported?

A

The Python interpreter executes the module’s code in an isolated scope.

17
Q

How does Python prevent modules from polluting the global namespace?

A

Imported modules are stored in their own namespace, avoiding conflicts.

18
Q

How do you check where a module is located?

A

Using:

```python
import module_name
print(module_name.__file__)
~~~

19
Q

What is the recommended way to name a module?

A

Use short, lowercase names without special symbols.

20
Q

How does Python handle cyclic imports?

A

It partially loads modules to avoid infinite loops but can still cause issues.