import re
    ret = re.match(r”1[356789]\d{9}”, tel)

    由于手机号位数大于11位也能匹配成功

    ret = re.match(r”^1[356789]\d{9}$”, tel)