Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple regex solution in Clear category for Acceptable Password II by luipenox
import re
def is_acceptable_password(password):
return len(password) > 6 and bool(re.search('\d', password))
March 18, 2022
Comments: