We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bec94 commit 3ab8211Copy full SHA for 3ab8211
Status/Day 6.md
@@ -153,6 +153,18 @@ for i in s:
153
print(",".join(lst))
154
```
155
156
+**OR**
157
+
158
+'''python
159
+import re
160
161
+a = input('Enter passwords: ').split(',')
162
+pass_pattern = re.compile(r"^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[$#@]).{6,12}$")
163
+for i in a:
164
+ if pass_pattern.fullmatch(i):
165
+ print(i)
166
+'''
167
168
---
169
170
# Question 19
0 commit comments