Must be a very straight forward way of doing this - I have a tuple and I want to create a tuple of this tuple but with x number of repetitions, eg 4 below. Alternatively I can have a list of tuples and convert to tuple from there.
base_tuple = (0,1)
num_tuples = 4
output I want
((0,1),(0,1),(0,1),(0,1))
Thanks