@@ -0,0 +1,9 @@
def is_strong_password(password: str) -> bool:
if len(password) < 8:
return False
checker_dig = any([i.isdigit() for i in password])
checker_alp = any([i == i.upper() for i in password])
return checker_dig and checker_alp
print(is_strong_password("asdffsdf1"))
The note is not visible to the blocked user.