InterviewSolution
Saved Bookmarks
| 1. |
What Are “tuples”? |
|
Answer» TUPLES are IMMUTABLE SEQUENCES: they cannot be modified. Tuples use PARENTHESES INSTEAD of square brackets: tup = (‘test’, 5, -0.2) Tuples are immutable sequences: they cannot be modified. Tuples use parentheses instead of square brackets: tup = (‘test’, 5, -0.2) |
|