Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Creative category for Acceptable Password IV by Stensen
is_acceptable_password = lambda p: (not not __import__('re').search('[A-z]+[0-9]+', p) and len(p)>6) if len(p)<9 else True
Sept. 21, 2020
Comments: