CS PRIN CROSSWORD

123456789101112131415161718192021
Across
  1. 6. the place in the list that each character occupies
  2. 7. returns the number of items in a list
  3. 9. affect the sequential flow of control by executing different statements based on the value of a Boolean expression
  4. 12. travel through
  5. 14. operator returns true if at least one of the conditions are true
  6. 17. this statement will run only if all conditional above it are false
  7. 19. allows us to simplify large sets of data by giving the entire set a single variable name
  8. 21. a type of variable that holds zero, one, or more data values.
Down
  1. 1. Adds a new value into the list before the specified index. Using 0 as the index will insert the value at the very beginning of the list.
  2. 2. iteration that run through a block of code a fixed number of times
  3. 3. using this operator only returns True if both conditions are true
  4. 4. returns that largest number represented in your list
  5. 5. returns the closest string value to the letter a that is in your list
  6. 8. function used to get information from the user of the program
  7. 10. this statement runs if the conditional statement attached is true
  8. 11. Adds a new value to the end of the list.
  9. 13. Deletes the first value in the list that matches the input.
  10. 15. function used to display
  11. 16. refers the order in which statements run your program
  12. 18. a list of characters
  13. 20. function used to convert any variable to a integer variable