Quando chamo o atributo vem o seguinte erro
>>> Perfil.nome
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: class Perfil has no attribute 'nome'
>>>
Meu código é
# -*- coding:utf-8 -*-
class Perfil ():
def __init__ (self, nome, telefone, empresa):
self.nome = nome
self.telefone = telefone
self.empresa = empresa