Chapter 6 - Modules Flashcards

1
Q

Modules

A

Files that contain function and object definitions, and add many other powerful features to Python

Similar to libraries used by other programming languages

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

import

A

Python keyword that allows us to find and use functions and objects within modules

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

import x as y

A

x must be the name of the module, and y must be a variable name

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