I have identical tuples of (0, 1) assigned to define limits for 3 input values:
bounds = ((0, 1), (0, 1), (0, 1))
Is there a Pythonic way to assign same tuples for N inputs? For example:
bounds = ((0, 1), (0, 1), (0, 1), (0, 1), (0, 1), ...Nth(0, 1))