What will be the output of print(t[1:3]) if t = ('a', 'b', 'c', 'd', 'e')?
print(t[1:3])
t = ('a', 'b', 'c', 'd', 'e')
A) ('a', 'b', 'c')
('a', 'b', 'c')
B) ('b', 'c')
('b', 'c')
C) ('b', 'c', 'd')
('b', 'c', 'd')
D) ('a', 'b')
('a', 'b')