Ask a New Question
Search
def_discount_voucher(voucher, amount) discount = 0
def_discount_voucher(voucher, amount)
discount = 0 if voucher == 'Flat 50': discount = 0.5 * amount elif voucher == 'Flat 30':
1 answer
85 views
def_discount_voucher(voucher, amount)
discount = 0 if voucher == 'Flat 50': discount = 0.5 * amount elif voucher == 'Flat 30':
1 answer
231 views
Use the code to answer the question.
def discount_on_voucher(voucher, amount): discount = 0 if voucher == 'Flat 50': discount =
1 answer
23 views
Use the code to answer the question.
def discount_on_voucher(voucher, amount): discount = 0 if voucher == 'Flat 50': discount =
1 answer
20 views
Use the code to answer the question. def discount_on_voucher(voucher, amount): discount = 0 if voucher == 'Flat 50': discount =
5 answers
26 views
Revising Programs Quick Check 3 of 53 of 5 Items Question Use the code to answer the question. def discount_on_voucher(voucher,
1 answer
asked by
lo
56 views
Use the code to answer the question. %0D%0A%0D%0Adef discount_on_voucher(voucher, amount): %0D%0A discount = 0 %0D%0A if voucher
1 answer
227 views
Use the code to answer the question.
def discount_on_weekdays(day, amount): discount = 0 if day == 'Monday': discount = 0.1 *
1 answer
18 views
Use the code to answer the question.
if age > 40: # 15 percent discount discount = discount + (0.15 * amount) if category == 'A':
1 answer
31 views
Use the code to answer the question.
if age > 40: # 15 percent discount discount = discount + (0.15 * amount) if category == 'A':
1 answer
32 views