This basically keeps me in the exact same spot I’ve been in… any way you could direct me maybe a little bit? What could I do to better understand this?
I’m not sure how the problems I pointed out “keep you in the exact same spot”?
You are not using num1 or num2 at all. To fix this, your code must actually use num1 and num2 inside of the body of your function instead of hard coded numbers 1, 2, 7, and 9.
This doesn’t actually call your function with two arguments. You are calling the function with one argument, 1 + 2, instead of two separate arguments 1 and 2. To fix this, don’t call your function with one argument. Instead, use a comma separated list of two arguments.
In general, I try to give you enough information so that you can try to fix the problems yourself instead of being a ‘show off’ who tells you exactly what to do and is remotely piloting your fingers on the keyboard, bypassing your learning
I understand completely, but without coding experience in my past, it’s not an easy thing to learn and understand. With how many other pages that are for this exact reason, the help should be more direct… but again, no experience here compared to some “show offs”.
Its a balancing act. If I only give explicit help that tells you what to do without thinking, you will not develop the ability to see an issue and work through how to fix it on your own.