egttools.analytical.sed_analytical.permutations

class permutations(iterable, r=None)

Bases: object

Return successive r-length permutations of elements in the iterable.

permutations(range(3), 2) –> (0,1), (0,2), (1,0), (1,2), (2,0), (2,1)

Methods

__getattribute__(name, /)

Return getattr(self, name).

__iter__()

Implement iter(self).

__new__(**kwargs)
__next__()

Implement next(self).

__reduce__()

Return state information for pickling.

__sizeof__()

Returns size in memory, in bytes.