Computer Science, asked by GautamPrabhu5481, 6 hours ago

t1 =(2,3,4,5,6) print(t1.index(4))output is​

Answers

Answered by conversationsked769
0

Answer:

6

Explanation:

Index gives the element at the given number provided. Here it gives index(4) as 5 since the list is numbered as such by default:

list = (el0,el1,el2,el3...)

Similar questions