Computer Science, asked by kaushiksudhanshik01, 5 months ago

] If list=[‘soniya’, ‘payal’, ‘ritika, ‘tanu’] , what will be the output of print(list[3]), after running the function : list.sort(reverse=True) ?

(a): soniya

(b): payal

(c): ritika

(d): tanu​

Answers

Answered by gaganadithyareddy9
1

Answer:

The output will be tanu in python...

[3] represents to show the element in 3rd position (4th position in human language) from the list...

Similar questions