summaryrefslogtreecommitdiffhomepage
path: root/pt-br
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2018-11-01 12:39:59 +0530
committerGitHub <noreply@github.com>2018-11-01 12:39:59 +0530
commit6e49da308eee27ad33e8217fe79aa2d9575bbd4a (patch)
tree2583af02dd3add8cf2093ed41cd897b78b2cde92 /pt-br
parentef60c77540f820e2d1303cdb3cd8d177f54e2a4b (diff)
parentec8231e6c25a9db40705c5336105652bfb43b8c5 (diff)
Merge pull request #3379 from fnscoder/master
[python3/pr-br] Fixed typo
Diffstat (limited to 'pt-br')
-rw-r--r--pt-br/python3-pt.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/pt-br/python3-pt.html.markdown b/pt-br/python3-pt.html.markdown
index 9b6bd1b6..ea0617f4 100644
--- a/pt-br/python3-pt.html.markdown
+++ b/pt-br/python3-pt.html.markdown
@@ -105,9 +105,9 @@ False or True # => True
1 < 2 < 3 # => True
2 < 3 < 2 # => False
-# (operador 'is' e operador '==') is verifica se duas referenciam um
-# mesmo objeto, mas == verifica se as variáveis apontam para o
-# mesmo valor.
+# (operador 'is' e operador '==') is verifica se duas variáveis
+# referenciam um mesmo objeto, mas == verifica se as variáveis
+# apontam para o mesmo valor.
a = [1, 2, 3, 4] # Referência a uma nova lista, [1, 2, 3, 4]
b = a # b referencia o que está referenciado por a
b is a # => True, a e b referenciam o mesmo objeto