Hi, so I just have a question that I at least think will be pretty easy. So, I am making a script that basically gives you a "vocabulary test". There is just one feature I would like to implement that I need help with.
I would like to make it randomized. I am using a dictionary for all my words/definitions, and I know that the dictionary does not keep them in order, however it is not randomized.
What would be the easiest way to randomize the order in which the questions are asked?
Snippet of code: ("words" is a dictionary)
def vocabtest():
for a, r in words.items():
Blah
Blah
Thank you in advance.