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