Hi,
I got an error when printing part of the tuple ,
when i checked the 'type' of days i got <class 'set'> .
I defined another string with "(" and the compiler recognized as "tuple"
days1 = ('Thur', 'Sat', 'Tus', 'Mon', 'Fri', 'Wed', 'Sun')
type (days1)
<class 'tuple'>
days1(1)
Traceback (most recent call last):
File "<pyshell#96>", line 1, in <module>
days1(1)
TypeError: 'tuple' object is not callable
days1[1]
'Sat'