You are viewing a single comment's thread. Return to all comments →
import re p = r'^[789]\d{9}$' for _ in range(int(input())): print("YES" if re.match(p, input()) else "NO")
Seems like cookies are disabled on this browser, please enable them to open this website
Validating phone numbers
You are viewing a single comment's thread. Return to all comments →