Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Libro:
- def __init__(self, titulo, autor, genero):
- self.titulo = titulo
- self.autor = autor
- self.genero = genero
- def obtener_informacion(self):
- return f"Título: {self.titulo}\nAutor: {self.autor}\nGénero: {self.genero}"
- # Crear una instancia de la clase Libro
- libro1 = Libro("El Gran Gatsby", "F. Scott Fitzgerald", "Novela")
- # Llamar al método obtener_informacion y mostrar la información del libro
- informacion_libro = libro1.obtener_informacion()
- print(informacion_libro)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement