Advertisement
Sergio_Istea

clases 5

Jun 22nd, 2023
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. class Libro:
  2. def __init__(self, titulo, autor, genero):
  3. self.titulo = titulo
  4. self.autor = autor
  5. self.genero = genero
  6.  
  7. def obtener_informacion(self):
  8. return f"Título: {self.titulo}\nAutor: {self.autor}\nGénero: {self.genero}"
  9.  
  10. # Crear una instancia de la clase Libro
  11. libro1 = Libro("El Gran Gatsby", "F. Scott Fitzgerald", "Novela")
  12.  
  13. # Llamar al método obtener_informacion y mostrar la información del libro
  14. informacion_libro = libro1.obtener_informacion()
  15. print(informacion_libro)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement