Skip to content

OPPS

It a pholosy to write code with phelspy

EXAMPLES

74. Python Program to Get the Class Name of an Instance

```py title ="Example 1: Using class.name" class Vehicle: def name(self, name): return name

v = Vehicle() print(v.class.name) ```