Advertisement
Fhernd

constructor-inicializador.py

Feb 4th, 2018
885
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. class Teclado:
  2.     def __init__(self, marca, multimedia, numero_teclas):
  3.         self.marca = marca
  4.         self.multimedia = multimedia
  5.         self.numero_teclas = numero_teclas
  6.        
  7. teclado_hyper_x = Teclado('HyperX', True, 120)
  8.  
  9. print(teclado_hyper_x.marca)
  10. print(teclado_hyper_x.multimedia)
  11. print(teclado_hyper_x.numero_teclas)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement