Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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)