0 votes

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.
...