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