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
2
Q
import
A
Python keyword that allows us to find and use functions and objects within modules
3
Q
import x as y
A
x must be the name of the module, and y must be a variable name