Advertisement
ywelte

Untitled

Aug 19th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. shopping = ["tortillas", "meat", "tomatoes", "lettuce", "queso"]
  2. shopping.append("tequila")
  3. shopping.insert(3, "salsa")
  4. for item in shopping:
  5. print(item)
  6. subjects = ["math", "reading", "science", "social studies", "gym"]
  7. subjects.remove("reading")
  8. for lists in subjects:
  9. print(lists)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement