摘要: 正则匹配邮箱格式 匹配指定后缀邮箱格式 import re email = input("Enter your email:\n") result = re.match(r".*@(163|qq|126|sohu)\.com",email) print(result) if result: prin 阅读全文
posted @ 2022-06-20 09:52 hanwang~ 阅读(17) 评论(0) 推荐(0) 编辑