We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43c0a5 commit 55a3edaCopy full SHA for 55a3eda
Main_Program.py
@@ -258,10 +258,10 @@ def discount():
258
Helps to generate discount over the total bill of the guest
259
"""
260
261
- bill_discount=int(input("Enter number of guest(s):"))
+ number_of_guest=int(input("Enter number of guest(s):"))
262
cursor_var=con.cursor()
263
264
- for i in range(bill_discount):
+ for i in range(number_of_guest):
265
aadhaar_card=input("Enter Aadhaar card number:")
266
total_bill=input("Enter amount:")
267
data=(total_bill,aadhaar_card)
0 commit comments