Python基础;身份证的秘密

7.通过程序判断并输出相应的信息。

oid=input("请输入身份证号码:")
print("-----------------------")
print("该人的身份信息如下:")
if(oid[0:2]=="43"):print("所在省份:湖南")
i=oid[6:14]
print("出生日期:%s"%i)
a=int(oid[-2])
if a%2==0:print("性别:女")
else:print("性别:男")
print("-----------------------")
b=oid[-8:-4]
nid=oid.replace(b,"****")
print("身份证保密显示如下:",nid)

本文链接:https://my.lmcjl.com/post/9162.html

展开阅读全文

4 评论

留下您的评论.