Program Console Vignaankosh.com
Execution Panel
Console is empty.
One Instance Method Calling Other Instance Methods is an interactive PYTHON dry run visualizer from the Methods 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 StudentReport:
def __init__(self):
self.name = "Kavya"
self.marks = 88
def show_name(self):
print("Name:", self.name)
def show_marks(self):
print("Marks:", self.marks)
def show_result(self):
print("Result: Pass")
def show_report(self):
self.show_name()
self.show_marks()
self.show_result()
s1 = StudentReport()
s1.show_report()