From b63cb12fa3826ea8ed346b56ccbe3dd424e679e6 Mon Sep 17 00:00:00 2001 From: luovkle Date: Sat, 21 Jan 2023 00:24:42 -0600 Subject: [python/es-es] parentheses required in print functions are added --- es-es/python-es.html.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'es-es/python-es.html.markdown') diff --git a/es-es/python-es.html.markdown b/es-es/python-es.html.markdown index 7deec286..5c95854f 100644 --- a/es-es/python-es.html.markdown +++ b/es-es/python-es.html.markdown @@ -388,8 +388,8 @@ keyword_args(pie="grande", lago="ness") #=> {"pie": "grande", "lago": "ness"} # Puedes hacer ambas a la vez si quieres def todos_los_argumentos(*args, **kwargs): - print args - print kwargs + print(args) + print(kwargs) """ todos_los_argumentos(1, 2, a=3, b=4) imprime: (1, 2) @@ -462,10 +462,10 @@ class Humano(object): # Instancia una clase i = Humano(nombre="Ian") -print i.decir("hi") # imprime "Ian: hi" +print(i.decir("hi")) # imprime "Ian: hi" j = Humano("Joel") -print j.decir("hello") #imprime "Joel: hello" +print(j.decir("hello")) #imprime "Joel: hello" # Llama nuestro método de clase i.get_especie() #=> "H. sapiens" -- cgit v1.2.3 From 7d6a852cecd57f1b7368ad364c62644ac77d59d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Adolfo=20Mej=C3=ADa=20S=C3=A1nchez?= Date: Fri, 31 Mar 2023 11:23:16 -0500 Subject: Update python-es.html.markdown - comment explanation - translate the say function to "decir" to match with the final print --- es-es/python-es.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'es-es/python-es.html.markdown') diff --git a/es-es/python-es.html.markdown b/es-es/python-es.html.markdown index 5c95854f..0b21e479 100644 --- a/es-es/python-es.html.markdown +++ b/es-es/python-es.html.markdown @@ -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 -- cgit v1.2.3