u11-script-modules-packages Flashcards

1
Q

What is the difference between import sys and from sys import path?

A

import sys imports the entire module and requires using sys. prefix to access contents, while from sys import path imports only the path object directly into the current namespace.

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

How do you import a module with an alias?

A

Use the as keyword: import sys as system. This allows you to reference the module using the alias name instead of the original name.

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

What does dir(module_name) do?

A

The dir() function shows all names (attributes and methods) defined in the specified module. Example: dir(sys) shows all contents of the sys module.

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

How can you import multiple items from a module in a single line?

A

Use commas to separate the items: from os import path, makedirs. You can also import multiple modules: import os, sys.

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

What happens if you import a module multiple times in Python?

A

Python will only perform the import once by default, regardless of how many times the import statement appears.

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

Why is using from module import * generally discouraged?

A

It can overwrite existing names in your namespace and makes it unclear where names come from, making code harder to maintain and understand.

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

What is the PYTHONPATH environment variable used for?

A

PYTHONPATH specifies additional directories where Python should look for modules to import. Python searches these directories along with the working directory.

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

How do you set PYTHONPATH in Linux?

A

Use the command: export PYTHONPATH=/path/to/your/module:$PYTHONPATH. To make it permanent, add this line to your ~/.bashrc file.

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

What is the purpose of the if \_\_name\_\_ == "\_\_main\_\_": block?

A

It allows code to be executed only when the file is run directly as a script, not when it’s imported as a module. This helps separate importable code from executable code.

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

What makes a directory a Python package?

A

Adding an empty \_\_init\_\_.py file to a directory makes Python treat it as a package, allowing you to import modules from that directory.

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

How do you import a function from a nested package?

A

Use dot notation to specify the path: from package.subpackage.module import function. Example: from sound.effects.echo import echofilter

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

What’s the difference between a module and a package in Python?

A

A module is a single Python file containing code, while a package is a directory containing multiple modules and an \_\_init\_\_.py file.

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

How do you import a specific function and rename it?

A

Use the as keyword with from import: from module import function as new_name. Example: from my_module import add as my_add

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

What happens when you import from a file?

A

The content of the file is executed when it’s imported, unless the code is inside an if \_\_name\_\_ == "\_\_main\_\_": block.

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

How do you import a module from a subdirectory?

A

Use dot notation: from directory.module import item. Example: from sound.formats.wavread import readwav

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

What is the purpose of \_\_init\_\_.py file?

A

It marks a directory as a Python package, making it possible to import modules from that directory. The file can be empty or contain initialization code.

17
Q

How can you check what names are defined in your current namespace?

A

Use the dir() function without arguments to see all names in the current namespace.

18
Q

What’s the difference between absolute and relative imports?

A

Absolute imports use the full path from the root package (e.g., from sound.effects import echo), while relative imports use dots to reference relative to current package (e.g., from ..effects import echo).

19
Q

How do you import all submodules from a package?

A

You typically don’t - you should import specific modules or functions. However, a package’s \_\_init\_\_.py can define \_\_all\_\_ to specify what is imported with from package import *.

20
Q

What happens if you try to import a module that doesn’t exist?

A

Python raises an ImportError (or ModuleNotFoundError, which is a subclass of ImportError) if it cannot find the specified module.