def repeat_tuples(test_tup, N): res = ((test_tup, ) * N) return (res)