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