Across
- 2. objects that can change their value but keep their id().
- 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].
- 4. a function which is defined inside a class body.
- 6. Operators used to combine conditional statements like and, or, and not.
- 12. a word or text in Python.
- 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.
- 16. can draw intricate shapes using programs that repeat simple moves specified by a program.
- 17. used in Python to draw intricate shapes using simple moves specified by the program.
- 18. blocks that allow you to test code for errors.
- 20. is raised when the wrong or invalid value is assigned to an object for a given operation.
- 24. is raised when the wrong or invalid value is assigned to an object for a given operation.
- 25. number is the location of specific value stored in Python string, list, or tuples.
Down
- 1. Operators used with numeric values to perform calculations such as addition and subtractions.
- 5. keyword used to end the current iteration in a for loop (or a while loop), and continues to the next iteration.
- 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.
- 8. a named entity in a function (or method) definition that specifies an argument (or in some cases, arguments) that the function can accept.
- 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()
- 10. decimal number
- 11. a value passed to a function (or method) when calling the function.
- 13. true or false statement.
- 15. a function presents processed data from the executed program back to a user in the display console. print()
- 19. is a special statement that you can use inside a function or method to send the function's results back to the caller.
- 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.
- 22. whole number
- 23. keyword used to terminate the execution of the loop.
- 24. is a way of storing values into the memory of the computer by using specific names that you define.
