From 2889d6d95ac176bb3320a0bc55e4a4dffec2e765 Mon Sep 17 00:00:00 2001 From: lindsaysofia Date: Tue, 13 Aug 2019 07:02:02 -0700 Subject: [PATCH] Translated comments for 'and' and 'or' examples (#30051) --- guide/spanish/python/boolean-operations/index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/guide/spanish/python/boolean-operations/index.md b/guide/spanish/python/boolean-operations/index.md index dd6a5f612f..69362daa48 100644 --- a/guide/spanish/python/boolean-operations/index.md +++ b/guide/spanish/python/boolean-operations/index.md @@ -12,7 +12,7 @@ Operacion | Resultado | Notas \--------- | ------------------------------------ | ----- x o y | si x es falso, entonces y, si no x | (1) x y y | si x es falso, entonces x, si no y | (2) -no x si x es falso, entonces verdadero, sino falso | (3) +no x | si x es falso, entonces verdadero, sino falso | (3) **Notas:** @@ -32,21 +32,21 @@ no x si x es falso, entonces verdadero, sino falso | (3) ### `and` : ``` ->>> True and False # Short-circuited at first argument. +>>> True and False # Evalúa el segundo argumento. False - >>> False and True # Second argument is evaluated. + >>> False and True # No evalúa el segundo argumento. False - >>> True and True # Second argument is evaluated. + >>> True and True # Evalúa el segundo argumento. True ``` ### `or` : ``` ->>> True or False # Short-circuited at first argument. +>>> True or False # No evalúa el segundo argumento. True - >>> False or True # Second argument is evaluated. + >>> False or True # Evalúa el segundo argumento. True - >>> False or False # Second argument is evaluated. + >>> False or False # Evalúa el segundo argumento. False -``` \ No newline at end of file +```