python从任意文件读取邮件地址输出的代码

Posted 玉米帮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python从任意文件读取邮件地址输出的代码相关的知识,希望对你有一定的参考价值。

如下的资料是关于python从任意文件读取邮件地址输出的代码。
# This script takes whatever you throw at stdin and outputs email addresses.
# eg. python email_extractor.py < PythonFAQ.html
# This script can be used for whatever you want, EXCEPT SPAMMING !
import sys,re
print ‘n‘.join(re.findall(‘([w.-][email protected][w.-]+)‘,sys.stdin.read()))




 











以上是关于python从任意文件读取邮件地址输出的代码的主要内容,如果未能解决你的问题,请参考以下文章

java如何读取文件流是啥格式

Python在符号@后读取.text和拆分单词

python 读取文档 并创建任意多的list

如果条件为true,则使用python代码发送邮件

C语言怎样将数字从文件里逐个读取出来

python实现读写txt文件