fork download
  1. import random
  2.  
  3. words=['test', 'word', 'lazy', 'help', 'verb', 'haha']
  4. random.shuffle(words)
  5. print(' '.join(words))
Success #stdin #stdout 0.01s 10040KB
stdin
Standard input is empty
stdout
verb help lazy test word haha