0 votes
in Python by
What Are “tuples”?

2 Answers

0 votes
by

Tuples are immutable sequences: they cannot be modified. Tuples use parentheses instead of square brackets: tup = (‘test’, 5, -0.2)

0 votes
by
Tuples is a sequence data type in Python. The number of values in tuples are separated by commas.
...