import re
p = input('Input your password: ')
x = True
while x:
if(len(p)<6 or len(p)>12):
break
elif not re.search('[a - z]', p):
break
elif not re.search('[0 - 9]', p):
break
elif not re.search('[A - Z]', p):
break
elif not re.search('[$#@]', p):
break
elif not re.search('\s', p):
break
else:
print('Valid Password')
x = False
break
if x:
print('Not a Valid Password')
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter