You are viewing a single comment's thread. Return to all comments →
import re n = int(input()) for t in range(n): credit = input().strip() credit_removed_hiphen = credit.replace('-','') valid = True length_16 = bool(re.match(r'^[4-6]\d{15}$',credit)) length_19 = bool(re.match(r'^[4-6]\d{3}-\d{4}-\d{4}-\d{4}$',credit)) consecutive = bool(re.findall(r'(?=(\d)\1\1\1)',credit_removed_hiphen)) if length_16 == True or length_19 == True: if consecutive == True: valid=False else: valid = False if valid == True: print('Valid') else: print('Invalid')
Seems like cookies are disabled on this browser, please enable them to open this website
Validating Credit Card Numbers
You are viewing a single comment's thread. Return to all comments →