Python Programming

12345678910111213141516171819202122232425
Across
  1. 2. objects that can change their value but keep their id().
  2. 3. an object usually containing a portion of a sequence. A slice is created using brackets [] with a colon between numbers when several are given, such as in variable_name[1:3].
  3. 4. a function which is defined inside a class body.
  4. 6. Operators used to combine conditional statements like and, or, and not.
  5. 12. a word or text in Python.
  6. 14. a series of statements which returns some value to a caller. It can also be passed zero or more arguments which may be used in the execution of the body. Begins with the def syntax.
  7. 16. can draw intricate shapes using programs that repeat simple moves specified by a program.
  8. 17. used in Python to draw intricate shapes using simple moves specified by the program.
  9. 18. blocks that allow you to test code for errors.
  10. 20. is raised when the wrong or invalid value is assigned to an object for a given operation.
  11. 24. is raised when the wrong or invalid value is assigned to an object for a given operation.
  12. 25. number is the location of specific value stored in Python string, list, or tuples.
Down
  1. 1. Operators used with numeric values to perform calculations such as addition and subtractions.
  2. 5. keyword used to end the current iteration in a for loop (or a while loop), and continues to the next iteration.
  3. 7. an object with a fixed value. Immutable objects include numbers, strings and tuples. Such an object cannot be altered. A new object has to be created if a different value has to be stored.
  4. 8. a named entity in a function (or method) definition that specifies an argument (or in some cases, arguments) that the function can accept.
  5. 9. a function pauses program execution to let a user type a line of information which is interpreted as a string unless specified otherwise. input()
  6. 10. decimal number
  7. 11. a value passed to a function (or method) when calling the function.
  8. 13. true or false statement.
  9. 15. a function presents processed data from the executed program back to a user in the display console. print()
  10. 19. is a special statement that you can use inside a function or method to send the function's results back to the caller.
  11. 21. is a special statement that you can use inside a function or method to send the function’s result back to the caller. A return statement consists of the return keyword followed by an optional return value or statement.
  12. 22. whole number
  13. 23. keyword used to terminate the execution of the loop.
  14. 24. is a way of storing values into the memory of the computer by using specific names that you define.