Python Forum
Calling a function to return a list of percentages
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling a function to return a list of percentages
#6
Larz+60 Just wondering how you would go about making it a return function instead of yield as my instructions don't mention anything about yield and I do not think we are up to that keyword yet

return n, tax, tax_rate, total
I tried changing yield into return but I get this error...

   for n, tax, tax_rate, total in calculate_tax(my_price, 5, 26, 5):
TypeError: 'int' object is not iterable

(Mar-25-2017, 10:33 AM)wavic Wrote:
In [10]: def result(item, price):     ...:     for tax in range(5, 26, 5):     ...:         percentage = price * tax / 100     ...:         print("{:>2}% tax on a {} costing ${:.2f} is ${:.2f}".format(tax, item, price, percentage))     ...:          In [11]: result(item, price)  5% tax on a Cake costing $17.50 is $0.88 10% tax on a Cake costing $17.50 is $1.75 15% tax on a Cake costing $17.50 is $2.62 20% tax on a Cake costing $17.50 is $3.50 25% tax on a Cake costing $17.50 is $4.38

My prev. post was a hint how to generate the tax list and use each tax to calculate the percentage

Awesome Thanks I have got it now :)
Reply


Messages In This Thread
RE: Calling a function to return a list of percentages - by Liquid_Ocelot - Mar-25-2017, 10:33 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to sort a list with duplicates and return their unique indices. Echoroom 3 3,769 Sep-23-2022, 07:53 AM
Last Post: deanhystad
  Use of function/return Paulman 6 2,578 Oct-24-2021, 11:07 PM
Last Post: Paulman
  Multiple return from function Grimmar 7 3,752 Mar-22-2021, 09:20 PM
Last Post: Grimmar
  Lambda function not return value mbilalshafiq 4 3,571 Jul-04-2020, 07:47 AM
Last Post: ndc85430
  Child class function of Log return "None" mbilalshafiq 2 2,334 Jun-30-2020, 07:22 PM
Last Post: mbilalshafiq
  Return the sum of the first n numbers in the list. pav1983 3 4,405 Jun-24-2020, 03:37 AM
Last Post: deanhystad
  Question on "define function"; difference between return and print extricate 10 4,990 Jun-09-2020, 08:56 PM
Last Post: jefsummers
  [split] problem with function return value ops 1 3,507 Apr-13-2020, 01:48 PM
Last Post: buran
  Function to return today's month, day, and year sbabu 9 5,172 Jan-28-2020, 06:20 PM
Last Post: snippsat
  Calling a function from another function johneven 2 2,985 Jul-09-2019, 12:42 AM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020