We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1642eeb commit 06fc3e3Copy full SHA for 06fc3e3
1 file changed
Task/check_Password.py
@@ -0,0 +1,13 @@
1
+# 4 to get pwd
2
+# check alpha num,
3
+# char more 8 and less than 20
4
+# pwd = input("Enter your password")# 3483803
5
+#
6
+# if(pwd.isalnum() and not pwd.isalpha() and not pwd.isdigit()):
7
+# if(len(pwd) > 8 and len(pwd) < 20):
8
+# print("Your password is okay")
9
+# else:
10
+# print("Sorry, your password is not correct, you have to enter pwd, that should be more than 8 and less than 20 char")
11
12
+# print("Sorry, include alpha and numaric in your password")
13
0 commit comments