摘要: 用Python做一个密码判断,用户输入注册密码,需要6位以上,包含数字、大写字母、小写字母。 import re a = re.compile('[a-z]') b = re.compile('[A-Z]') c = re.compile('[0-9]') d = re.compile('[^a-z 阅读全文
posted @ 2023-11-01 14:51 Jinylin 阅读(147) 评论(0) 推荐(0) 编辑