From 2442cb61a94dcfbbac7022d9f1d250b8b0636961 Mon Sep 17 00:00:00 2001 From: 008pranjal <44477944+008pranjal@users.noreply.github.com> Date: Sun, 28 Oct 2018 22:42:52 -0700 Subject: [PATCH] Update pwvld.py --- pwvld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pwvld.py b/pwvld.py index 25ae9e8..39f4c88 100644 --- a/pwvld.py +++ b/pwvld.py @@ -1,4 +1,5 @@ import re, sys +#password is valid if it is of length 8 and contains both uppercase and lowercase and numerical character s=input("Enter password to be validated:") if len(s) < 8 : print("Weak password")