We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e514065 commit 4e3ff7cCopy full SHA for 4e3ff7c
other/password_generator.py
@@ -0,0 +1,13 @@
1
+import string
2
+from random import *
3
+
4
+letters = string.ascii_letters
5
+digits = string.digits
6
+symbols = string.punctuation
7
+chars = letters + digits + symbols
8
9
+min_length = 8
10
+max_length = 16
11
+password = ''.join(choice(chars) for x in range(randint(min_length, max_length)))
12
+print('Password: %s' % password)
13
+print('[ If you are thinking of using this passsword, You better save it. ]')
0 commit comments