Skip to content

Commit 345e03a

Browse files
authored
Add files via upload
1 parent d640387 commit 345e03a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import string
2+
from random import *
3+
characters = string.ascii_letters + string.punctuation + string.digits
4+
password = "".join(choice(characters) for x in range(randint(8, 16)))
5+
print(password)

0 commit comments

Comments
 (0)