Guest User

Untitled

a guest
Sep 14th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #add item to shopping cart. Not yet tested
  2. def add_to_cart(object):
  3. cart = []
  4. object = Object.objects.all()
  5. for obj in object:
  6. if obj in cart:
  7. print("item already in Cart")
  8. else:
  9. cart.push(obj)
  10. print("item added to cart")
  11. print(cart)
Add Comment
Please, Sign In to add comment