Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Libro:
- def __init__(self, codigo):
- self.codigo = codigo
- self.autor = ''
- self.titulo = ''
- memoriasSubsuelo = Libro(452)
- memoriasSubsuelo.autor = 'Fyodor Dostoevsky'
- memoriasSubsuelo.titulo = 'Memorias del subsuelo'
- print(memoriasSubsuelo.autor)
- print(memoriasSubsuelo.titulo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement