There was an error while loading. Please reload this page.
1 parent 25dd934 commit baa4852Copy full SHA for baa4852
Status/Day 6.md
@@ -153,17 +153,18 @@ for i in s:
153
print(",".join(lst))
154
```
155
156
-**OR**
+---
157
158
-'''python
+```python
159
+'''Solution by: pratikb0501
160
+'''
161
import re
-
162
a = input('Enter passwords: ').split(',')
163
pass_pattern = re.compile(r"^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[$#@]).{6,12}$")
164
for i in a:
165
if pass_pattern.fullmatch(i):
166
print(i)
-'''
167
+```
168
169
---
170
0 commit comments