1. Lets start by creating a traditional random password composed
of numbers, letters, and a few special characters.
letters = "abcdefghijklmnopqrstuvwxyz"
caps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
numbers = "1234567890"
# Make an 8 letter password by combining characters from the
three strings
2. Next you follow the XKCD model of selecting four random words
and concatenating them together to for our password.
nouns = ['tissue', 'processor', 'headquarters', 'favorite',
'cure', 'ideology', 'funeral', 'engine', 'isolation', 'perception',
'hat', 'mountain', 'session', 'case', 'legislature', 'consent',
'spread', 'shot',...