I was making a simple flash card program to build my vocabulary, and thus needed to randomize a dictionay I found many helpful answers on this site, many off this site, and noticed that shuffle was an option (i know there was random.choice, but i went with shuffle) but there's something that I'm not grasping. looks like this:
import random
vocab_dict = {'word1':'def1',
'word2':'def2',
'etc.':'etc.'}
vocab_dict_rand = vocab_dict.keys()
random.shuffle(vocab_rand) **#<--This is where problem occurs**
for key in vocab_rand:
print word
input ""
print definition
input ""
input exit
So the program crashes and points to that line with the random.shuffle(vocab_rand)...
I get this in the shell
File "C:\Python31\lib\random.py", line 270, in shuffle
x[i], x[j] = x[j], x[i]
TypeError: 'dict_keys' object does not support indexing
Any help would be appreciated.
