summaryrefslogtreecommitdiffhomepage
path: root/es-es/python-es.html.markdown
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2014-05-19 15:43:46 +0200
committerNami-Doc <vendethiel@hotmail.fr>2014-05-19 15:43:46 +0200
commit42a2661607cc86e3754fe8b9cb665818126cd552 (patch)
tree538bfb57c11575e95124e21e1e00e68b6237bb6a /es-es/python-es.html.markdown
parent3a57d396b53d4d2ee67832b3da86f66a0a8997de (diff)
parent5f3a6c01b8b0890efaa3ba73a0a5a515bcbfdf52 (diff)
Merge pull request #611 from hirohope/master
Added python3 es
Diffstat (limited to 'es-es/python-es.html.markdown')
-rw-r--r--es-es/python-es.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/es-es/python-es.html.markdown b/es-es/python-es.html.markdown
index f92f5cde..f7a0ec02 100644
--- a/es-es/python-es.html.markdown
+++ b/es-es/python-es.html.markdown
@@ -130,7 +130,7 @@ otra_variable # Levanta un error de nombre
# 'if' puede ser usado como una expresión
"yahoo!" if 3 > 2 else 2 #=> "yahoo!"
-# Listas sobre secuencias
+# Listas almacenan secuencias
lista = []
# Puedes empezar con una lista prellenada
otra_lista = [4, 5, 6]
@@ -254,7 +254,7 @@ conjunto_lleno | otro_conjunto #=> {1, 2, 3, 4, 5, 6}
# Haz diferencia de conjuntos con -
{1,2,3,4} - {2,3,5} #=> {1, 4}
-# CHequea la existencia en un conjunto con 'in'
+# Chequea la existencia en un conjunto con 'in'
2 in conjunto_lleno #=> True
10 in conjunto_lleno #=> False