pip3 install -r requirements.txt
open script in editor there multiples variables in the top of the script.
I0 = 0 | |
I1 = 1 | |
def fibonacci(high): | |
results = [I0, I1] | |
[results.append(results[v] + results[v + 1]) for v in range(high)] | |
return results |