nlist is a lightweight multidimensional list in Python.
nlist supports Python 3.4+.
from nlist import NList l = NList([[1, 2], [3, 4]]) l[1, 0] = '42' print(l.index('42')) #=> (1, 0)
Just grab nlist.py.
MIT (see LICENSE.txt)
Enter search terms or a module, class or function name.