When trying to write a one line Fibonacci sequence that I understand, I'm having an issue with fib = lambda a, b: b, a + b as "'b' is not defined"
However, when I do sum = a, b, c: a + b + c I get no errors. sum(1, 2, 3) runs perfectly and returns 6.
I've researched global variables and found that if I set a and b to Null before starting, it doesn't give me an error, but is there a way not to do this?