03 2023 档案
摘要:# -*- coding: utf-8 -*- import uuid import sys import json import uuid from aliyunsdkcore.client import AcsClient from aliyunsdkcore.profile import re
阅读全文
摘要:import redef check_phone_right(self, phone_number): """检测号码是否正确""" phone_number_strip = phone_number.strip() pattern = re.compile(r'^(13[0-9]|14[0|5|6
阅读全文
摘要:import re import datetime def parse_id_card(id_card): # 获取身份证号中的出生年月日和性别和年龄 birthday_pattern = re.compile(r'\d{6}(\d{4})(\d{2})(\d{2})\d{3}[X\d]') mat
阅读全文