+ 3
Scoring 12/13 why missing one?? Can anyone tell me where am wrong?
import re password=input() pattern=r"([!@#
amp;%*]{2})" match=re.search(pattern,password ) if (len(password)>=7): if match: if(len([x for x in password if x.isdigit()])>=2): print("Strong") else: print("Weak") else: print("Weak") else: print("Weak")6 odpowiedzi
+ 10
Sorry for that
+ 2
Yeah thanks for your concern
+ 2
Mansi and 𝐊𝐢𝐢𝐛𝐨 𝐆𝐡𝐚𝐲𝐚𝐥
Thank to all of you for the concern.
Busy coding day
Much appreciation 💯
+ 1
I just miss one special character in my regex , the code have help too