0
In python which data type is unordered and mutable ?
3 Respuestas
0
Dictionary
0
We have 4 option 
1. Tuple
2. Sets
3. Sequence
4. Mapping
0
Out of all mutable data types :
  [list,  dictionary,  set,  bytearray]
The only unordered and mutable data types are: 
   [dictionary  ,  set]



