#๐ Beginner call return help
14 messages ยท Page 1 of 1 (latest)
@cunning quiver
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
when i run my program it tells me average is undefined
i dont understand why since I called for it and there is a return for it in the function
When calling a function, you need to put () at the end. So in your case average()
i still get the same error
Oh, you have to define a function before you call it. In python, the function has to be written above where you want to call it from.
oh i see
you would usually structure a python code such that you start with your imports, then your function and class definitions and only at the end would you write code that calls those functions, that way you don't run into this issue
another thing is how do i format my completion times to 2.f
i tried the way i did before and it said i cant use it here
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.