Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
530 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 Reply

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'}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...