Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.89 KB | None | 0 0
  1.         if category == "1" or category == "Vegetables":
  2.             category = 1
  3.         elif category == "2" or category == "Fruits":
  4.             category = 2
  5.         elif category == "3" or category == "Dairy products":
  6.             category = 3
  7.         elif category == "4" or category == "Meat":
  8.             category = 4
  9.         elif category == "5" or category == "Chemistry":
  10.             category = 5
  11.         elif category == "6" or category == "Cosmetics":
  12.             category = 6
  13.         elif category == "7" or category == "Bread":
  14.             category = 7
  15.         elif category == "8" or category == "Drinks":
  16.             category = 8
  17.         elif category == "9" or category == "Alcohol":
  18.             category = 9
  19.         elif category == "10" or category == "Snacks":
  20.             category = 10
  21.         elif category == "11" or category == "Others":
  22.             category = 11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement