Skip to content
sipke edited this page Feb 1, 2018 · 9 revisions

Generate random

import string import random ''.join([random.choice(string.ascii_letters + string.digits + string.punctuation) for n in xrange(12)])

Clone this wiki locally