Python Basics

123456789101112131415161718
Across
  1. 2. Command used for repetition.
  2. 4. Named memory location organised into indexes and data items or values, e.g. name[0] = "John"
  3. 5. Key word used with 'if' to check if any part of a word or phrase exists in another variable.
  4. 7. Command used to send data to a file on a 'channel'.
  5. 9. Command used to get data from a file on a 'channel'.
  6. 11. Command used to add more functionality to your Python program.
  7. 12. Command used to convert data into a string.
  8. 13. Key word used in multi-way selection to indicate second and subsequent options.
  9. 15. Key sequence or 'escape sequence' used to move to the next line and display text on said next line.
  10. 16. Key word used in both multi-way and binary selection to indicate the final option or default choice.
  11. 17. Command used to create a 'channel' to the contents of a file.
  12. 18. Command used to convert data into an integer.
Down
  1. 1. Named memory location.
  2. 3. Command used to specify a lower and upper limit in certain situations e.g. for j in range(0,10)
  3. 6. Command used to display text on the screen.
  4. 8. Command used for repetition.
  5. 9. Command used to generate a random number.
  6. 10. Command used to set up a function or subroutine. This then sets up a block of code that can be used again and again as required.
  7. 11. Command used for selection.
  8. 12. Command used to go to a specified location in a file on a 'channel'.
  9. 14. Command used to get data from the user, usually via the keyboard.