Advertisement
thufiles

funcionario

Jun 27th, 2019
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. class Gerente(Funcionario):
  2.  
  3.     def __init__(self, senha, qtd_gerenciados):
  4.         super().__init__(nome, cpf, salario)
  5.         self._senha = senha
  6.         self._qtd_gerenciados = qtd_gerenciados
  7.  
  8.  
  9. class Funcionario:
  10.  
  11.     def __init__(self, nome, cpf, salario):
  12.         self._nome = nome
  13.         self._cpf = cpf
  14.         self._salario = salario
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement