Translation to portuguese. (#22859)

There are some parts of the text that still in english. I did translated a phrase to portuguese.
This commit is contained in:
Ronan Felipe
2019-08-07 20:40:59 -03:00
committed by Randell Dawson
parent 49aece097c
commit 71abe14a8c

View File

@ -23,7 +23,7 @@ class ClassName:
#### Class Objects: #### Class Objects:
Class objects support two kinds of operations: attribute references and instantiation. 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`. Attribute references use the standard syntax used for all attribute references in Python: `obj.name`.
Valid attribute names are all the names that were in the class's namespace when the class object was created. Valid attribute names are all the names that were in the class's namespace when the class object was created.
@ -68,4 +68,4 @@ python Complexo de classe: def **init** (self, realpart, imagpart): self.r = rea
x = complexo (3,0, -4,5) x = complexo (3,0, -4,5)
> > > xr, xi (3,0, -4,5) \`\` \` > > > xr, xi (3,0, -4,5) \`\` \`