Advertisement
Fhernd

crear-clase.py

Feb 3rd, 2018
639
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. class Empleado:
  2.     empresa = 'ABC Inc.'
  3.     salario_base = 5000000
  4.    
  5.     def calcular_salario(self):
  6.          print(salario_base * 1.37)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement