Skip to content

Commit

Permalink
Merge pull request #4 from juanifogo/main
Browse files Browse the repository at this point in the history
correccion de error menor en seccion de listas
  • Loading branch information
JZylber committed Aug 27, 2022
2 parents 8b319a8 + 9b2517d commit b0ef553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cheatsheets/python.md
Expand Up @@ -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
Expand Down

1 comment on commit b0ef553

@vercel
Copy link

@vercel vercel bot commented on b0ef553 Aug 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.