c0d3dsk1lls

ingredients

Jun 27th, 2022 (edited)
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. #MUST BE IN SAME FOLDER AS LISTS FOR lists.py to work.
  2. #PRINTS INGREDIENTS.
  3. ingredients = ['salt', 'pepper', 'ketchup', 'mayo', 'bread crumbs',]
  4. #------------------------------------------------------------------------
  5. i0 = ingredients[0]
  6. i1 = ingredients[1]
  7. i2 = ingredients[2]
  8. i3 = ingredients[3]
  9. i4 = ingredients[4]
  10. print(i0)
  11. print(i1)
  12. print(i2)
  13. print(i3)
  14. print(i4)
  15. #PLEASE SUPPORT MY COMMUNITY BY CREATING A FORUM ACCOUNT AT https://codedskills.net
Add Comment
Please, Sign In to add comment