提取身份证出生年月的代码
时间: 2023-04-08 19:03:51 浏览: 134
7-3 从身份证号码中提取出出生年月 (12分)
5星 · 资源好评率100%
以下是提取身份证出生年月的 Python 代码:
```python
id_card = '110101199003077777' # 身份证号码
birth_year = id_card[6:10] # 提取出生年份
birth_month = id_card[10:12] # 提取出生月份
print('出生年月:{}年{}月'.format(birth_year, birth_month))
```
这段代码可以提取身份证号码中的出生年份和出生月份。
阅读全文