Computer Science, asked by bhavinbharadwaj5409, 1 year ago

in python which data type is unordered and mutabmutable ?

Answers

Answered by Lasernauts
1

Answer:Answer:

B

Explanation:

Mapping is correct answer

Explanation:

Answered by ayush7620569800
0

Answer:

only types in python are immutable other thing frozen sets. rest all is mutable

unordered. data is anything that is not shorted by key on index.

dictionaroes can be stored and by default are ordered by the sequence data is added to them

which leaves us with sets . sets seem unordered because they are ordered by hashes of value . we can still say sets are unordered as their is no way to manually determine where a new element will be placed within a set.

hence sets are unordered and mutable.

Similar questions