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