Introducción a Python
Hugo Bowne-Anderson
Data Scientist at DataCamp
float: números reales
int: números enteros
str: cadena, texto
bool: True, False
height = 1.73
tall = True
Ciencia de datos: muchos puntos de datos
Altura de toda la familia
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]
Nombra un conjunto de valores
Contiene cualquier tipo
Contiene diferentes tipos
[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
Funcionalidad específica
Comportamiento específico
Introducción a Python