Storing lists of values

12345678910111213141516
Across
  1. 3. Lists are written using comma-separated values surrounded by square brackets
  2. 7. a list with no elements. Created using just square brackets, [ ]
  3. 9. Can be modified, e.g. lists
  4. 10. Represented by the percent sign (%), used to calculate remainder
  5. 11. Stores and organises data so it can be accessed and modified efficiently.
  6. 13. Cannot be changed, e.g. strings
  7. 14. A function that casts a float to an integer
  8. 15. A list method that sorts the items in a list in ascending order
  9. 16. A function that returns the length of a list
Down
  1. 1. A Python data type, representing fractions or numbers with decimal places
  2. 2. Simplest data structure in Python, stores and organizes data as a sequence of elements
  3. 4. Changing one type of data to another
  4. 5. method Splits a string into a list of substrings
  5. 6. A list method that reverses the order of items in a list
  6. 7. an individual value stored in a list. List elements can be of any type.
  7. 8. Accessing list elements using subscripts and square-bracket notation
  8. 12. A list method that adds an item to the end of a list