You are viewing a single comment's thread. Return to all comments →
import re pattern = r'^(?!.*(\d)(\-*\1){3})[4-6]((\d{3}(\-\d{4}){3})|([\d]{15}))$' for _ in range(int(input())): print('Valid' if re.match(pattern, input()) else '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 →