Update python-es.html.markdown

- comment explanation
- translate the say function to "decir" to match with the final print
This commit is contained in:
Gustavo Adolfo Mejía Sánchez 2023-03-31 11:23:16 -05:00 committed by GitHub
parent 9817ee032b
commit 7d6a852cec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -328,7 +328,7 @@ dicc_lleno = {"uno": 1, "dos": 2, "tres": 3}
nuestro_iterable = dicc_lleno.keys()
print(nuestro_iterable) #=> dict_keys(['uno', 'dos', 'tres']). Este es un objeto que implementa nuestra interfaz Iterable
Podemos recorrerla.
# Podemos recorrerla.
for i in nuestro_iterable:
print(i) # Imprime uno, dos, tres
@ -548,7 +548,7 @@ def pedir(_decir):
@pedir
def say(decir_por_favor=False):
def decir(decir_por_favor=False):
mensaje = "¿Puedes comprarme una cerveza?"
return mensaje, decir_por_favor