Python Forum
trouble with functions "def", calling/defining them
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
trouble with functions "def", calling/defining them
#9
(Oct-21-2020, 02:51 AM)bowlofred Wrote: In showIncome(), aRevenue isn't assigned. So when it's used on line 23, it doesn't know what the value should be. It needs to be set to something, or it needs to not be used.

I see now, how would I go about setting that value? I tried making a variable named as aRevenue but how would i get it to call the info i need from the calcIncome?

def showIncome(num_aTickets, num_bTickets, num_cTickets):
    aRevenue = calcIncome()
    bRevenue = calcIncome()
    cRevenue = calcIncome()
    income = calcIncome(num_aTickets, num_bTickets, num_cTickets)
    print('the revenue collected from total ticket sales is', income)
    print('the revenue collected from class a ticket sales is', aRevenue)
    print('the revenue collected from class b ticket sales is', bRevenue)
    print('the revenue collected from class c ticket sales is', cRevenue)


showIncome(1, 2, 3)
I tried the above by placing it in the showIncome but that came back as
Error:
Traceback (most recent call last): File "main.py", line 35, in <module> showIncome(1, 2, 3) File "main.py", line 25, in showIncome aRevenue = calcIncome() TypeError: calcIncome() missing 3 required positional arguments: 'aTickets', 'bTickets', and 'cTickets'
Reply


Messages In This Thread
RE: trouble with functions "def", calling/defining them - by Duck_Boom - Oct-21-2020, 03:09 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Calling functions by making part of their name with variable crouzilles 4 1,011 Nov-02-2023, 12:25 PM
Last Post: noisefloor
  Calling functions from within a class: PYQT6 Anon_Brown 4 4,082 Dec-09-2021, 12:40 PM
Last Post: deanhystad
  Defining Functions theturtleking 4 3,002 Dec-07-2021, 06:45 PM
Last Post: deanhystad
  Defining multiple functions in the same def process sparkt 5 3,014 Aug-09-2020, 06:19 PM
Last Post: sparkt
  Calling C functions with PyObjects jibarra 6 2,913 Jul-17-2019, 02:52 PM
Last Post: jibarra
  Defining functions TommyAutomagically 1 1,965 Apr-25-2019, 06:33 PM
Last Post: Yoriz
  calling os functions not in module os Skaperen 2 2,770 Nov-10-2018, 01:54 AM
Last Post: Skaperen
  Trouble calling functions in main function RedSkeleton007 6 5,307 Nov-11-2017, 01:22 PM
Last Post: sparkz_alot
  Calling functions from another file jp2017 11 30,849 Oct-11-2017, 10:58 PM
Last Post: snippsat
  Having trouble defining variable tannishpage 6 5,822 Mar-23-2017, 01:04 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

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