Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.63 KB | None | 0 0
  1. #Overwrite "Steven Speilberg" with "Michael Bay"
  2. great_directors = ["Martin Scorsese", "Steven Spielberg", "Francis Ford Coppola"]
  3. great_directors[1]= "Michael Bay"
  4.  
  5. #overwrite "Bumbkebee" with "Grimlock"
  6. transformers = ["Optimus Prime", "Megatron", "Bumblebee", "Starscream"]
  7. transformers[2] = "Grimlock"
  8.  
  9. #Overwrite "Socks" with "Food"
  10. camping_trip_supplies = ["Socks", "Flashlight", "Tent", "Blanket"]
  11. camping_trip_supplies[0] = "Food"
  12.  
  13. #Overwrite "Microsoft","Blackberry" and "IBM" with "Facebook" and "Apple"
  14. tech_companies = ["Google", "Microsoft", "Blackberry", "IBM", "Yahoo"]
  15. tech_companies[1:4] = ["Facebook", "Apple"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement