dustin (owner)

Revisions

gist: 40015 Download_button fork
public
Public Clone URL: git://gist.github.com/40015.git
Embed All Files: show embed
twister.py #
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
 
import random
 
if __name__ == '__main__':
    colors=('red', 'green', 'yellow', 'blue')
    limbs=('left foot', 'right foot', 'left hand', 'right hand')
 
    print random.choice(limbs), random.choice(colors)