subject=list(subject) subject.pop() OR subject=list(subject) subject.pop(-1) OR subject=list(subject) del(subject[-1]) OR subject=list(subject) del subject[-1] OR Any other correct variation of the code
(a) print(Tup[0]) (b) Tup.insert(2, 3) (c) print(Tup[1:2]) (d) print(len(Tup))