Computer Science, asked by SHALUMEHTA4969, 10 months ago

Create a python program to prepare a bill in a Hotel with GST and Discount

Answers

Answered by coronavv
0

#Calculating GST and Discount

amt= input(float('Enter amount: '))

GST= input(float('Enter GST: '))

disc= input(float('Enter discount %: '))

final gst= amt*GST/100 + amt

print('the amount with gst is: ', final gst)

final disc= amt - amt*disc/100

print('final amount to be paid: ', final disc)

please inform me if there is an error, i don't have my idle with me now

Similar questions