view bin/password @ 12352:cf652da78b89 draft

<wib_jonas> `` perl -pi -e \'s/print (.*)/print($1)/\' /hackenv/bin/password
author HackEso <hackeso@esolangs.org>
date Wed, 04 Nov 2020 14:37:41 +0000
parents af405b8a7235
children 9e69a48ed481
line wrap: on
line source

#!/usr/bin/python3

import secrets
import string

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