diff --git a/guide/portuguese/python/class/index.md b/guide/portuguese/python/class/index.md index 01a4736cb8..7090d37f4e 100644 --- a/guide/portuguese/python/class/index.md +++ b/guide/portuguese/python/class/index.md @@ -23,7 +23,7 @@ class ClassName: #### 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`. 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) -> > > xr, xi (3,0, -4,5) \`\` \` \ No newline at end of file +> > > xr, xi (3,0, -4,5) \`\` \`