import re
pattern = r'(13[4-9]\d{8})$|(15[01289]\d{8})$'
mobile = '137683665479999999999999'
match1 = re.match(pattern,mobile)
if match1 == None:
print(mobile,'is not available number')
else:
print(mobile,'is available')
于2020-07-12 17:01:45编辑
首页上一页 1 下一页尾页 3 条记录 1/1页