Choice Card History
History:
What will be the output of the following Python code? >>>t=(1,2,4,3) >>>t[1:3]
Talk
History
Edit
ACCEPTED
4 years ago
renyx
Name
: What will be the output of the following Python code? >>>t=(1,2,4,3) >>>t[1:3]
What will be the output of the following Python code?
t=(1,2,4,3) t
1:3
(2, 4, 3)
Think again
(1, 2, 4)
You need to work on your basics
(2, 4)
Correct !!
(1, 2)
Ohh!! Try again