Skip to content

Write a Python Program to calculate tax – GST / Income Tax.

Class 11th IP (065)

Write a Python Program to calculate tax - GST / Income Tax.

SOLUTION..

amount = float(input("Enter amount: ")) gst = float(input("GST %: ")) gst_amount = amount * gst / 100 total = amount + gst_amount print("GST Amount =", gst_amount) print("Total Amount =", total)