view bin/password @ 12489:6b1d2bb35c60 draft

<int-e> ` mv /hackenv/share/UnicodeData.txt /hackenv/share/UnicodeData.txt.bak
author HackEso <hackeso@esolangs.org>
date Fri, 10 Nov 2023 13:31:08 +0000
parents 9e69a48ed481
children
line wrap: on
line source

#!/usr/bin/python3

import secrets
import string

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