diff --git a/password Generator in Python b/password Generator in Python new file mode 100644 index 0000000..cda40b3 --- /dev/null +++ b/password Generator in Python @@ -0,0 +1,9 @@ +import strings +import random +s = " abcdefghijkl\ + 567890ABCDEFGHIJKLM\ + NOPQRSTUVWXYZ!@$%^&*\ + ()_-+[]{};/';., " +passwordlen = 16 +password = "".join(random.sample(s,passwordlen)) +print(password)