comparison bin/password @ 12350:2678f7ed17a8 draft

<wib_jonas> revert
author HackEso <hackeso@esolangs.org>
date Wed, 04 Nov 2020 14:35:59 +0000
parents f468498767e6
children af405b8a7235
comparison
equal deleted inserted replaced
12349:f468498767e6 12350:2678f7ed17a8
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 import secrets 3 import random
4 import string 4 import string
5 5
6 print "".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15)) 6 print "".join(random.choice(string.ascii_lowercase) for _ in xrange(15))