what will be the outcome of the following in Python t=[1,2,4,3] print (t[1:3])
Answers
Answered by
1
Answer:
>>>t=[1,2,4,3]
>>>print( t[1:3] )
[2,4]
Hope You Get It
Similar questions