Python Class
  Python: Class and Behavior Python is a completely object-oriented language. You have been working with classes and objects right from the beginning of these tutorials. Every element in a Python program is an object of a class. A number, string, list, dictionary, etc., used in a program is an object of a corresponding built-in class. You can retrieve the class name of variables or objects using the "type()"  method, as shown below. Example: Python Built-in Classes ``` >> >  num = 20  >> >  type ( num )  < class  'int' >              >> >  s = "Python"  >> >  type ( s )   < class  'str' > ``` - Defining a Class A class in Python can be defined using the "class"  keyword. ``` class  < ClassName > :      < statement1 >      < statement2 >      .      .      < statementN > ``` 1. Class Attributes 2. Constructor 3. Instance Attributes 4. Properties 5. Class Methods A class ...