A file containing Python definitions and statements which can be imported
A Module
Exceptions can be handled using _____ clause, or left alone, which causes abnormal program termination.
the try-except clause
The way in which certain numbers are assigned to corresponding characters is called an
encoding standard
The 4 Pillars of OOP
Encapsulation, Inheritance, Polymorphism, and Abstraction
A Python ________ is a class containing a piece of specialized code able to produce a series of values, and to control the iteration process.
generator
A built-in function that can be used to obtain an alphabetically sorted list which contains all entity names available in the module
dir()
Error which is triggered by operations which misuse argument types
TypeError,
A number assigned to a certain character according to a given encoding standard is a
Code Point
_______ is a mechanism of basing a class upon another class, retaining a similar implementation and a common set of traits.
Inheritance
An iterator must provide which two methods
__iter__() and __next__()
A module that contains some useful constants and functions for carrying out mathematical operations
Math Module
The sample code prints ________when the variable tires to divide by zero
ZeroDivisionError
What does UTF stand for
Unicode Transformation Standards
__________takes place when a class has more than one direct superclass.
Multiple inheritance
In Python, a ________ is a function without a name (an anonymous function). Its declaration takes the following form:
lambda function
The semi-compiled files are placed in this directory located in the same directory in which the source module exists.
__pycache__
Error which is connected to problems caused by improper use of data aggregates
LookupError
Python 3 accepts this kind of encoded source files
UTF-8
____________is a mechanism which enables the programmer to modify the behavior of any of the object's superclasses without modifying these classes themselves.
Polymorphism
________ is a technique which allows the storing of values in spite of the fact that the context in which they have been created does not exist anymore.
Closure
This code is displayed when the module is run as a standalone code
set to "__main__"
Python analyzes exception branches in the same order in which they appear in the source code, it means that more general except branches should do this
follow the most specialized ones
A commonly adopted and globally used encoding standard is ASCII. What does that stand for?
American Standard Code for Information Interchange
A _______is a function embedded inside a class
method
Two types of files that are readable in a file stream
Text and Binary