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.

Related questions

0 votes
asked Feb 10, 2021 in Python by SakshiSharma
0 votes
asked Oct 14, 2021 in Python by rajeshsharma
...