编写一个 Reg 表达式,使用 Python Reg 表达式模块 Re 确认电子邮件 ID?
Re
Python 有一个正则表达式模块re。
re
编写可以检查 .com 和 .co.in 子域的电子邮件 ID 的 re 表达式。
.com
.co.in
import re print(re.search(r"[0-9a-zA-Z.]+@[a-zA-Z]+\.(com|co\.in)$","liushi.live@outlook.com"))