Simple visualization for recursive functions in Python.
Project description
recviz
Simple and easy visualization for recursive functions in Python.
Installing recviz
pip install recviz
Usage
from recviz import recviz
@recviz
def fib(n):
# base condition mimicking the first two numbers
# in the sequence
if n == 0: return 0
if n == 1: return 1
# every number is summation of the previous two
return fib(n - 1) + fib(n - 2)
fib(3)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
recviz-0.0.4.tar.gz
(4.1 kB
view hashes)
Built Distribution
recviz-0.0.4-py3-none-any.whl
(3.3 kB
view hashes)