Home > Article > Backend Development > What is the difference between tuples and lists in python
The difference between tuples and lists in python is as follows:
1. Lists are dynamic arrays. They are immutable and can reset their length (change the number of their internal elements). Number);
2. Tuples are static arrays, they are immutable, and their internal data cannot be changed once created;
3. Tuples are cached in the Python runtime environment, which means This means we don't need to access the kernel to allocate memory every time we use a tuple.
Recommended tutorial: python tutorial
The above is the detailed content of What is the difference between tuples and lists in python. For more information, please follow other related articles on the PHP Chinese website!