python正则
Posted hanwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python正则相关的知识,希望对你有一定的参考价值。
正则匹配邮箱格式 匹配指定后缀邮箱格式 import re email = input("Enter your email:\\n") result = re.match(r".*@(163|qq|126|sohu)\\.com",email) print(result) if result: prin
以上是关于python正则的主要内容,如果未能解决你的问题,请参考以下文章