Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
532 views
in Technique[技术] by (71.8m points)

shuffle dictionary values in python

I have a dictionary and I want to shuffle the values, not the keys. For example:

{"a": "ACAT", "b": "ACTG", "c": "ACCC"}

and after shuffle:

{"a": "ACAT", "b": "ACTG", "c": "ACCC"}

but I don't know how I can do this work in python. I will be grateful if you help me.

question from:https://stackoverflow.com/questions/65626654/shuffle-dictionary-values-in-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The random module has a function that shuffles in-place.

So we can get the dict's values, shuffle them, and construct a new dict.

Demo:

>>> import random
>>> d = {
...     "a": "ACAT",
...     "b": "ACTG",
...     "c": "ACCC"
... }
>>> shuffled = list(d.values())
>>> random.shuffle(shuffled)
>>> dict(zip(d, shuffled))
{'a': 'ACCC', 'b': 'ACTG', 'c': 'ACAT'}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...