fibonacci.py Jan 7, 2020 fibonacci.py (GitHub) Performant? implementation of the fibonacci function on Python. The function fibonacci(n) returns the nth term of the fibonacci sequence. Mainly uses memoization and some cache “manipulation”, running on a single thread.