# 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)
mcferrill on 2007/03/27 20:21:
try this: