Posts by Thiago da Costa Santos • 3 points
1 post
-
-1
votes1
answer280
viewsQ: Search object by PYTHON class attribute
Good afternoon, I wonder if I can find an object using an attribute Example: class Pessoa: def __init__(self, nome, idade, cpf) self.__nome = nome self.__idade = idade self.__cpf = cpf pessoa1 =…