the slightest idea
I don't have even that!(where's the "randomize" button in the theme poll?)
(log in to comment)
Comments
cool mcferrill!
Maybe I'll try it. :)
Maybe I'll try it. :)
Oh, the Old Fashioned Nerdy Humour.
(log in to comment)
mcferrill on
2007/03/27 20:21:
try this:# random_theme.py import random themes = ["The only way is up", "Underneath the radar", "One way or another", "Don't stop till you get enough", "The final countdown"] random.shuffle(themes) for theme in themes: print '%s: %s' % (themes.index(theme)+1, theme)