Posts by Marcosuel Vieira • 31 points
1 post
-
3
votes1
answer134
viewsA: Class error in Python
Correct the class initialization method name, the correct is __init__ class Empregados: def __init__(self, nome, email, skype): self.nome = str(nome) self.email = str(email) self.skype = str(skype)…