Translation to portuguese. (#22889)

Translation of a paragraph from english to portuguese. There are still some text in the end of the article that still in english.
pull/22927/head^2
Ronan Felipe 2019-08-07 20:41:49 -03:00 committed by Randell Dawson
parent 71abe14a8c
commit 4bf5fd3ee5
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ class ClassName:
Objetos de uma classe soportam dois tipos de operações: Referência por atributo e instanciação. Objetos de uma classe soportam dois tipos de operações: Referência por atributo e instanciação.
Attribute references use the standard syntax used for all attribute references in Python: `obj.name`. Referência de atributo usam a sintaxe padrão usada para todas as referências de atributo em Python: `obj.name`.
Valid attribute names are all the names that were in the class's namespace when the class object was created. Nomes de atributos válidos são todos os nomes que estavam na classe quando o objeto daquela classe foi criado.
So, if the class definition looked like this: Então, se a definição da classe for parecida com a definição abaixo:
``` ```
python class MyClass: "" "Um exemplo simples de classe" "" i = 12345 python class MyClass: "" "Um exemplo simples de classe" "" i = 12345