Which is faster tuple or list?



Which is faster tuple or list?..

Answer / Kumkum Panday

In Python, tuples are generally more efficient than lists for read-only operations due to their immutability. However, for write operations (like appending, inserting, or deleting elements), lists offer more flexibility and are faster.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Python Interview Questions

What is s in python 3?

1 Answers  


Is python time time utc?

1 Answers  


What are the basic datatypes in python?

1 Answers  


Why you should learn python in 2019?

1 Answers  


What is the output of the following code and why?

1 Answers  


What is python metaclass?

1 Answers  


Is del the same as remove()? What are they?

1 Answers  


Explain me what is the common way for the flask script to work?

1 Answers  


What is the use of lambda in python?

1 Answers  


What is the difference between encapsulation and abstraction in python?

1 Answers  


What are python and name some key features of it?

1 Answers  


What is __init__.py used for in python?

1 Answers  


Categories