Perl Primer - University of California, Davis

2.1 Tuples in Python. By definition, a tuple is a set of comma-separated values enclosed in parentheses. Examples: (1,2,3,4,5,6,7,8,9,10) is the tuple of integers between 1 and 10 (‘Monday’,’Tuesday’,’Wednesday’,’Thursday’,’Friday’,’Saturday’,’Sunday’) is the tuple containing the days in the week. Accessing tuple values ................
................