GST Bill Calculation Dry Run in PYTHON

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 Calculation Program Code

# 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}")

View the complete Io programs page.

Program Console GST Bill Calculation Topic: PYTHON Vignaankosh.com
Execution Panel
Step 0/0
Console is empty.