我試圖找到在用戶輸入的字符串中重複出現超過2次的任何字符。我有這個,但它沒有進入if語句。在字符串中查找3個或更多重複的字符
password = asDFwe23df333
s = re.compile('((\w)\2{2,})')
m = s.search(password)
if m:
print ("Password cannot contain 3 or more of the same characters in a row\n")
sys.exit(0)
就是這樣,謝謝! – 2013-03-04 01:48:37