view bin/password @ 12479:fc74ac1f8b61 draft

<b_jonas> slashlearn password//The password of the month is OFFSET 0 ROW FETCH NEXT 50 ROW ONLY.
author HackEso <hackeso@esolangs.org>
date Sat, 01 Apr 2023 14:31:10 +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)))