view bin/password @ 12349:f468498767e6 draft

<wib_jonas> `` perl -pi -e s/random/secrets/ /hackenv/bin/password
author HackEso <hackeso@esolangs.org>
date Wed, 04 Nov 2020 14:35:42 +0000
parents 6dff80b6fb44
children 2678f7ed17a8
line wrap: on
line source

#!/usr/bin/python

import secrets
import string

print "".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15))