Google News
logo
Data Science - Interview Questions
What Native Data Structures Can You Name in Python? Of These, Which Are Mutable, and Which Are Immutable?
The native data structures of python are :
 
* Lists
* Tuples
* Sets
* Dictionary

Tuples are immutable. Others are mutable.
Advertisement