What is a class?
A class is the blueprint of an object; it is a structure which contains attributes and behaviours.
How is a class created?
class Monkey:
pass
What is an instance?
An instance is an object in a class.
What is an instance method?
It is a method that defines the behaviour of an object in a class; it is specific to objects and not shared with other objects.
What is the ‘__init__’ function?
It is used to assign values to properties of an object in a class.
What is the order of importance for python operators?
Please Excuse My Dear Aunt Susie (PEMDAS):
Parenthesis
Exponential
Multiplication
Division
Addition
Subtraction