Create a file called fibonacci.py in the root of the repo that:
- Defines a function
fibonacci(n) that returns the nth Fibonacci number
- Includes a
if __name__ == '__main__' block that prints the first 10 Fibonacci numbers
- Includes a docstring for the function
Create a file called
fibonacci.pyin the root of the repo that:fibonacci(n)that returns the nth Fibonacci numberif __name__ == '__main__'block that prints the first 10 Fibonacci numbers