re mobile non valider python
# validate either with +91 or without
s = +91 9876543210
r = re.compile("?:(\+91\s)?([6-9][0-9]{9})$")
m = re.search(r,s)
if m:
print(re.group())
else:
print("not found")
vip_codes