Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for House Password by integrich0
import re
def checkio(data):
'Return True if password strong and False if not'
return bool(re.match(r'^.*(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{10,}$', data))
if __name__ == '__main__':
assert checkio('A1213pokl')==False, 'First'
assert checkio('bAse730onE4')==True, 'Second'
print('All ok')
Oct. 29, 2012
Comments: