Class name and object type Dry Run in PYTHON

Class name and object type is an interactive PYTHON dry run visualizer from the Class programs section. Study the source code, then use the execution controls to follow each step, variable update, highlighted line, and console output.

This page provides a browser-based dry run with source-code highlighting, auto-scroll, voice narration controls, and execution output for learning the program step by step.

Class name and object type Program Code

class Employee:
    pass

e1 = Employee()
e2 = Employee()

print("e1 type:", type(e1).__name__)
print("e2 type:", type(e2).__name__)
print("Different objects:", e1 is not e2)

View the complete Class programs page.

Program Console Class name and object type Topic: PYTHON Vignaankosh.com
Execution Panel
Step 0/0
Console is empty.