Advertisement
Fhernd

cambiar-estado-objeto.py

Feb 5th, 2018
896
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. class Libro:
  2.     def __init__(self, codigo):
  3.         self.codigo = codigo
  4.         self.autor = ''
  5.         self.titulo = ''
  6.        
  7. memoriasSubsuelo = Libro(452)
  8. memoriasSubsuelo.autor = 'Fyodor Dostoevsky'
  9. memoriasSubsuelo.titulo = 'Memorias del subsuelo'
  10.  
  11. print(memoriasSubsuelo.autor)
  12. print(memoriasSubsuelo.titulo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement