------
## 最终结论
```python
def repeat_tuples(tup, n):
    return (tup,) * n
```