Python Basics

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