My Crossword Maker Logo
Powered by BrightSprout
Save Status:
or to save your progress. The page will not refresh.
Controls:
SPACEBAR SWITCHES TYPING DIRECTION
Edit a Copy:
Make Your Own:
Crossword Word Search Worksheet
Rate This Puzzle:
Log in or sign up to rate this puzzle.

Python Coding Cheatsheet

Name:
Date:
Class Period:
Across
a parser for command-line options, arguments and subcommands
Unordered set, contains no duplicates
Python uses white-space indentation, rather than curly braces or keywords, to delimit blocks
Mutable list, can contain mixed types
Designed to be easy for humans to read and write
A string literal that occurs as the first statement in a module, function, class, or method definition.
They are a shorthand to create anonymous functions
Means of breaking out of the normal flow of control of a code block in order to handle errors or other exceptional conditions
notations for constant values of some built-in types
Python evaluates expressions from left to right
Section of code which is grouped together
Down
The process of finding and removing programming errors
Giving a value to a variable
The basic unit of code reusability in Python. A block of code imported by some other code
The process of freeing memory when it is not used anymore
filter(function, sequence) returns a sequence consisting of those items from the sequence for which function(item) is true
A parameterized sequence of statements
Sub parts of sequences
Cannot be changed after its created
Conditionally executes a block of code, along with else and elif (a contraction of else-if)
Needed to create an empty code block