Program Console Vignaankosh.com
Execution Panel
Console is empty.
GST Bill Calculation is an interactive PYTHON dry run visualizer from the Io 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.
# GST Bill Calculator
amount = float(input("Enter bill amount: "))
gst_percent = float(input("Enter GST percentage: "))
gst = amount * gst_percent / 100
total = amount + gst
print(f"\nBill Amount: ₹{amount:.2f}")
print(f"GST ({gst_percent}%): ₹{gst:.2f}")
print(f"Total Amount: ₹{total:.2f}")