Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import datetime
  2. class Producto:
  3. def __init__(self, marca, nombre, link, precios):
  4. self.marca = marca
  5. self.nombre = nombre
  6. self.link = link
  7. self.precios = precios
  8.  
  9. def __str__(self):
  10. return "\nMarca: " + self.marca+"\nNombre: " + self.nombre+"\nLink: " + self.link+"\nPrecios: "+str(self.precios)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement