在一个元组内重复一个元组

2022-01-20 00:00:00 python tuples

问题描述

有没有办法在一个元组中重复一个元组?

Is there a way to repeat a tuple inside a tuple ?

如果我做类似的事情

a = ((0, 1) * n)

我还是明白了

a = (0, 1, 0, 1 ..... n times) 

如果我想要类似的东西怎么办

what if I want something like

a = ((0, 1), (0, 1) ... n times)


解决方案

将一个元组与一个元组相乘作为其项.不要忘记结尾的 ,.

Multiply a tuple with a tuple as its item. Don't forget a trailing ,.

>>> ((0, 1),) * 5
((0, 1), (0, 1), (0, 1), (0, 1), (0, 1))

相关文章