Tuple

Input: Tuple(...)
$$\left(\ldots\right)$$

Tuple with given elements.

Input: Tuple(a, b)
$$\left(a, b\right)$$

Tuple with two elements.

Input: Tuple(a)
$$\left(a\right)$$

Tuple with a single element. The 1-tuple is not equal to a.

Input: Tuple()
$$\left(\right)$$

The empty tuple.

Input: Tuple(c_(i), For(i, 0, n))
$$\left(c_{0}, c_{1}, \ldots, c_{n}\right)$$

Tuple constructed by a generator expression.

Last updated: 2020-03-06 00:22:16