Introduction to Python
Hugo Bowne-Anderson
Data Scientist at DataCamp
float - real numbers
int - integer numbers
str - string, text
bool - True, False
height = 1.73
tall = True
Data Science: many data points
Height of entire family
height1 = 1.73
height2 = 1.68
height3 = 1.71
height4 = 1.89
[a, b, c]
[1.73, 1.68, 1.71, 1.89]
[1.73, 1.68, 1.71, 1.89]
fam = [1.73, 1.68, 1.71, 1.89]
fam
[1.73, 1.68, 1.71, 1.89]
Name a collection of values
Contain any type
Contain different types
[a, b, c]
fam = ["liz", 1.73, "emma", 1.68, "mom", 1.71, "dad", 1.89]
fam
['liz', 1.73, 'emma', 1.68, 'mom', 1.71, 'dad', 1.89]
fam2 = [["liz", 1.73], ["emma", 1.68], ["mom", 1.71], ["dad", 1.89]]
fam2
[['liz', 1.73], ['emma', 1.68], ['mom', 1.71], ['dad', 1.89]]
type(fam)
list
type(fam2)
list
Specific functionality
Specific behavior
Introduction to Python