Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ git push
12. [Jennifer Gonzalez](https://github.com/donycisneros)
13. [Juan Perez](https://github.com/juanmarcosperez)
14. [Manish Pandey](https://github.com/InvincibleNobita)
15. [Agni Sain](https://github.com/agnisain123)
15. [Agni Sain](https://github.com/agnisain123)
16. [Sujay Shekhar](https://github.com/sujay-0202)

...your name...
3 changes: 3 additions & 0 deletions SujayShekhar/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Hi!
This is a small program which generators random strings and string digits
Will keep improving it by adding new features. Any suggestions regarding it are welcome.
10 changes: 10 additions & 0 deletions SujayShekhar/random_password_generator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import random
import string

def random_password_generator(size=4, chars=string.ascii_lowercase + string.digits):
return ''.join(random.choice(chars) for _ in range(size))


print(random_password_generator())

print(random_password_generator(size=50))