-
Notifications
You must be signed in to change notification settings - Fork 2
Glossary
Algorithm - A set of rules that are followed to solve a specific problem
Class - The basis for Object-Oriented Programming. A blueprint for how Objects are created
CMD - Abbreviation for Command Prompt
Constructor - How an instance of an Object is made. May or may not accept parameters
DataFrame - Pandas representation of a spreadsheet. Can retrieve and manipulate information using built-in Methods
Dictionary - Data structure for mapping key:value pairs
Function - Produces an output given an input. Described as a "Black Box"
List - Holds a group of data. Can retrieve or modify data using indices. Functions like a Java ArrayList
Method - A block of code that only runs when called. Bound by Class
Pandas - A Python library used for data analysis
Set - Built-in python data structure. Cannot have duplicate entries. Similar to a mathematical set
String - A collection of text characters enclosed by quotes. Usually to represent words. (e.g. "Hello")
Terminal - Command Line / PowerShell