dotfiles/dotfiles/lib/bin/random_choice.py

7 lines
101 B
Python
Executable File

#!/usr/bin/env python
import sys
import random
print sys.argv[1:]
print random.choice(sys.argv[1:])