Modules Flashcards
1
Q
Script
A
Python code written in a file and passed to interpreter
2
Q
Module
A
File containing (name ending in .py) Python code that can be imported and used by scripts, other modules, and interpreters
3
Q
Built-in Module
A
Comes pre-installed with Python (sys, time, math)
4
Q
reload()
A
Function that reloads and re-executes a changed module
5
Q
Package
A
Directory that, when imported, gives access to all of the modules stored within it
6
Q
Pandas
A
High-performance third-party data analytics library
7
Q
Dataframes
A
Included in Pandas to create a Python object with rows and columns.
8
Q
Package Manager
A
Used to install third-party libraries
pip, Anaconda