iteration_utilities.
radd
Returns op2 + op1.
op2 + op1
The values to be added.
Examples
Equivalent to lambda x, y: y + x:
lambda x, y: y + x
>>> from iteration_utilities import radd >>> radd(2, 2) 4
powerset
random_combination