I created a module
called fibo.py
like the tutorial shows, which looks like this:
def fib(n):
a, b = 0, 1
while a < n:
print(a, end=' ')
a, b = b, a+b
print()
def fib2(n):
result = []
a, b = 0, 1
while a < n:
result.append(a)
a, b = b, a+b
return result
and then I added
python fibo.py <arguments>
and I got an invalid syntax error
on the f of fibo.py.
I've seen similar questions on stack overflow but none of them makes sense to me.
I've been working on this one piece of code for an hour now. Help is greatly appreciated.