Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Teclado:
- def __init__(self, marca, multimedia, numero_teclas):
- self.marca = marca
- self.multimedia = multimedia
- self.numero_teclas = numero_teclas
- teclado_hyper_x = Teclado('HyperX', True, 120)
- print(teclado_hyper_x.marca)
- print(teclado_hyper_x.multimedia)
- print(teclado_hyper_x.numero_teclas)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement