A class is a template for storing data and functions in an object. A class can be instantiated to create a unique instance. A class can accept parameters in the constructor.
Solution for How to create a new instance of a class in Python : You can use the class name to create a new instance Call ClassName() to create a new instance of the class ClassName.
To pass parameters to the class instance, the class must have an __init__() method. Pass the parameters in the constructor of the class.
class C: