Computer Science, asked by AnshulBiyani, 2 months ago

what will be the outcome of the following in Python t=[1,2,4,3] print (t[1:3])​

Answers

Answered by alphinfrancis25
1

Answer:

>>>t=[1,2,4,3]

>>>print( t[1:3] )

[2,4]

Hope You Get It

Similar questions