Python Beginner Crossword Puzzle

12345678910111213141516
Across
  1. 3. A function that displays text on the screen.
  2. 6. A function that asks the user for information.
  3. 7. A note in code that begins with # and is ignored by Python.
  4. 8. A method that turns a string into all uppercase letters.
  5. 10. A method that removes extra spaces from the beginning and end of a string.
  6. 12. The symbol # used to write a comment in Python.
  7. 13. Used to describe or explain the code but is not run by Python.
  8. 14. A text value stored in quotation marks in Python.
  9. 15. What is used to store data in variables in a Python program.
  10. 16. This method makes all the letters in a string lowercase.
Down
  1. 1. A method that splits a string into a list based on a specific character.
  2. 2. The function you use to get text from the user in Python.
  3. 4. The character used to indicate the start of a string (usually " " or ' ').
  4. 5. A method that finds the length of a string.
  5. 9. A method to replace parts of a string with another value.
  6. 11. A method that capitalizes the first letter of a string.