- 2
I NEED HELP PYTHON PROGRAMMERS PLEASE:under what part of python is this also?
Write a program that takes in a string as input and evaluate it as valid password. The password is valid if it has a minimum of 2 numbers, 2 of the following special characters("@","#","$,"&","!","%","*"), and a length of at least 7 characters: if the password passes the check output "strong" , else output "weak"
1 ответ
+ 3
I made it using regular expressions if this is your question.