Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Sistema:
- def __init__(self, nombre):
- self.nombre = nombre
- def distribucion(self): # Método
- print(f"Hola, estoy usando {self.nombre}")
- sistema1 = Sistema("Ubuntu")
- sistema1.distribucion() # Salida: Hola, estoy usando Ubuntu
Advertisement