This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from random import choice | |
from string import ascii_lowercase, ascii_uppercase, digits | |
from sys import argv | |
VOWELS = ['a', 'e', 'i', 'o', 'u'] | |
CONSONANTS = [l for l in ascii_lowercase if l not in VOWELS] | |
FIRST = choice([l for l in ascii_uppercase if l.lower() not in VOWELS]) |