comparison bin/password @ 12351:af405b8a7235 draft

<wib_jonas> `` perl -pi -e \'s/random/secrets/;s/python/$&3/\' /hackenv/bin/password
author HackEso <hackeso@esolangs.org>
date Wed, 04 Nov 2020 14:36:52 +0000
parents 2678f7ed17a8
children cf652da78b89
comparison
equal deleted inserted replaced
12350:2678f7ed17a8 12351:af405b8a7235
1 #!/usr/bin/python 1 #!/usr/bin/python3
2 2
3 import random 3 import secrets
4 import string 4 import string
5 5
6 print "".join(random.choice(string.ascii_lowercase) for _ in xrange(15)) 6 print "".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15))