view bin/password @ 12353:9e69a48ed481 draft

<wib_jonas> `` perl -pi -e \'s/xrange/range/\' /hackenv/bin/password
author HackEso <hackeso@esolangs.org>
date Wed, 04 Nov 2020 14:38:13 +0000
parents cf652da78b89
children
line wrap: on
line source

#!/usr/bin/python3

import secrets
import string

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