You are viewing a single comment's thread. Return to all comments →
import re regex = re.compile(r'^[A-Z]{5}[0-9]{4}[A-Z]$') for i in range(int(input())): if regex.match(input()): print('YES') else: print('NO')
Seems like cookies are disabled on this browser, please enable them to open this website
Valid PAN format
You are viewing a single comment's thread. Return to all comments →