Skip to content

🎡️ Playground

This playground is pre-installed with bigtree and the Python standard libraries. Play around with the codes. Have fun!

>>> from bigtree import Tree
>>> tree = Tree.from_list(["a/b", "a/c", "a/b/d", "a/b/e", "a/c/f", "a/b/e/g", "a/b/e/h"])
>>> tree.show()
a
├── b
│   ├── d
│   └── e
│       ├── g
│       └── h
└── c
    └── f