Unit 3.1: Variables and Assignments

Python

To define variables, just establish a variable name, and then use the equal sign to set it equal to a value, wheter it be a string, character, list, or boolean.

Javascript

global variables can be defined with the var keyword

Constant variables could be defined with the const keyword

Local variables could be defined with the let keyword.

Unit 3.2: Data Abstraction

Python

In python, lists could be used to organize similar data structures.

Lists could be split with the .split() method. The deliminator for the splitting operation could be set within the parenthesis. By default, the deliminator are whitespace characters.

Lists could also be joined into a variable with the .join() method. A deliminator could also be set for such a list.

###