Who is more faster..! tuple or list

**Tuple are faster than list in python because tuples are immutable, whereas lists are mutable.

But there may be certain use cases where list could perform better than tuples, here are a few examples:

  1. Appending elements
  2. Sorting**
4 Likes

@sayanalu9091

That’s awesome.
Keep sharing interesting stuffs.

1 Like

@sayanalu9091
But list takes more memory and also list is not optimised in terms of memory when we will compare with tuple. But yes we have some other advantages of list i.e append and others

2 Likes