Python Vocabulary Crossword Puzzle
Download and print this Python Vocabulary crossword puzzle.
Related puzzles:
Browse all Computers / IT Puzzles
QUESTIONS LIST:
- function : a named sequence of statements that performs some useful operation. may or may not take arguments ; may or may not produce a result.
- object : referred to as an instance of a given class. has its own attributes and methods
- inheritance : enables a new class, referred to as the child/subclass, to derive and use attributes and methods from the parent/superclass class.
- instance : use of an object or variable that specifically belongs to a particular class.
- parameter : a name used inside a function to refer to the value passed as an argument.
- method : functions that are associated with an object and can manipulate its data or perform actions on it.
- argument : a value provided to a function when the function is called. this value is as signed to the corresponding parameter in the function.
- local variable : a variable defined inside a function. a local variable can only be used inside its function.
- return value : the result of a function. if a function call is used as an expression, the return value is the value of the expression.
- indentation : refers to the spaces at the beginning of a code line that are required in python to organize code.
- none : a special value returned by void functions.
- module : a file that contains a collection of related functions and other definitions.
- list : data structure in python that is a mutable, or changeable, ordered sequence of elements.
- tuple : is an ordered, and unchangeable, collection
- break : keywords used to exit a loop, typically while loop.
- self : represents the instance of a class. allows you to access variables, attributes, and methods of a defined class
- dictionary : mutable data structures that allow you to store key-value pairs.
- while true : will make a program run forever because "true" always evaluates to true. exit this with a break.
- nested if: how to write an if statement inside an if statement
- data frame : is a data structure of a 2d array constructed with rows and columns, used for database purposes.