From 9b2517dbb0eb4f01b83e9a0db72353480046ae62 Mon Sep 17 00:00:00 2001 From: Juan Ignacio Fogolin <83310328+juanifogo@users.noreply.github.com> Date: Fri, 26 Aug 2022 21:43:53 -0300 Subject: [PATCH] correccion de error menor en seccion de listas --- cheatsheets/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheatsheets/python.md b/cheatsheets/python.md index df11db1..3490bad 100644 --- a/cheatsheets/python.md +++ b/cheatsheets/python.md @@ -218,7 +218,7 @@ lista = [4,5,0.25,'x'] lista[0] = 'Ort' lista[2] = 1 lista[3] += 'y' -lista == ['ORT',5,1,'xy'] +lista == ['Ort',5,1,'xy'] ``` #### Agregar y quitar elementos