You've learned this already. ✅
Click here to view the next lesson.
Capítulo 22 - Apéndice C: Hoja de trucos de Python
Estructuras de Datos
- Lista
my_list = [1, 2, 3, 4, 5]
- Diccionario
my_dict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
- Tuplas
my_tuple = ("apple", "banana", "cherry")
- Conjuntos
my_set = {"apple", "banana", "cherry"}
Estructuras de Datos
- Lista
my_list = [1, 2, 3, 4, 5]
- Diccionario
my_dict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
- Tuplas
my_tuple = ("apple", "banana", "cherry")
- Conjuntos
my_set = {"apple", "banana", "cherry"}
Estructuras de Datos
- Lista
my_list = [1, 2, 3, 4, 5]
- Diccionario
my_dict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
- Tuplas
my_tuple = ("apple", "banana", "cherry")
- Conjuntos
my_set = {"apple", "banana", "cherry"}
Estructuras de Datos
- Lista
my_list = [1, 2, 3, 4, 5]
- Diccionario
my_dict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
- Tuplas
my_tuple = ("apple", "banana", "cherry")
- Conjuntos
my_set = {"apple", "banana", "cherry"}