Python Programming

12345678910111213141516171819
Across
  1. 2. listname.______(3) Remove an item from a list by its index
  2. 4. listname.______("item") Add an item to a list
  3. 8. A place in computer memory with an assigned name, used to store and retrieve data of different types
  4. 9. A data type that stores whole numbers
  5. 11. Allows the user to give information to the program
  6. 12. Runs code if a condition is true.
  7. 14. ____ _____: Repeat infinitely (2 words)
  8. 17. random._____(min, max) creates a random number
  9. 18. Python's way of saying "if the previous conditions were not true, then try this condition"
Down
  1. 1. A data type that stores the values True or False
  2. 3. A data type that stores decimal numbers
  3. 5. Outputs the result to the screen
  4. 6. A data type that stores text
  5. 7. Changing a value from one data type to another.
  6. 10. A data type that stores a collection of values
  7. 13. ___ i in range(10): Repeat a certain number of times
  8. 14. ____ lives > 0: Repeat until a condition is met
  9. 15. Paired with an if statement and any number of elifs, runs if none of the conditions given were true.
  10. 16. listname.______("item") Remove an item from a list by its value
  11. 19. The location of an item in a list.