Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password II by dx2-66
import re
def is_acceptable_password(passw):
return len(passw)>6 and bool (re.search(r'\d', passw))
Dec. 29, 2021
Comments: