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

Advanced Python

Across
An importable directory
Name of class provided by Python for 'stand-in' test objects
Modify code to make it better organized without breaking tests or adding functionality
Module that provides the setup() function for distributions
Keyword used to define a new type
Method of TestCase used to ensure that two floating point values are approximately equal
Method of TestCase used to ensure a certain exception is raised
Magic method used to retrieve the length of an object (omit the __dunder__)
Magic method used to implement the square bracket operator (e.g. a[i]) (omit the __dunder__)
Keyword used to make use of a module
Down
The string value of the magic variable __name__ when running a Python script (omit the __dunder__)
Magic method used to provide a developer-friendly string version of an object (omit the __dunder__)
Decorator used in lieu of getters and setters
Method of TestCase used to ensure two objects are equal to one another
A reusable Python file
Standard library module used for generating test cases
Package you must install to create binary distributions
If this exception is raised, the test has *Failed*
Method used to temporarily provide a stand-in for a standard library function
Magic method used to implement assigning to the square bracket operator (e.g. a[i] = 5) (omit the __dunder__)
First parameter to (most) methods
Magic file that must be present to make a directory into a package