0
{"raitisu": [{"name": "test"}, {"name": "test1"}]}         
note = {'name': ""+random.choice(notes.keys())+""}

如何在 test 和 test1 之间随机选择?

4

1 回答 1

1

从中随机选择一个字典列表notes(使用字典在被视为可迭代时产生其键的事实),然后使用已知键“名称”从列表中选择一个值。

import random
notes = {"raitisu": [{"name": "test"}, {"name": "test1"}],
         "iceyyheart": [{"name": "test"}]}
notes_key = random.choice(notes)
random_dict_list = notes[notes_key]
random_value = random.choice(random_dict_list)["name"]
note = { 'name': random_value }
于 2013-09-12T12:07:20.493 回答