当前位置:Gxlcms > Python > 使用Python制作一个简单的刷微博器

使用Python制作一个简单的刷微博器

时间:2021-07-01 10:21:17 帮助过:58人阅读

呵呵,不得不佩服Python的强大,寥寥几句代码就能做一个简单的刷微博器。

import webbrowser as webimport timeimport os

count=0while count<10:
count=count+1 #你要刷的博客
web.open_new_tab("http://www.cnblogs.com/smiler/archive/2010/04/20/1716418.html#2856973")
time.sleep(1)else:
os.system('taskkill /F /IM 360se.exe')


你可以试下,有没有很强大,小弟刚学Python,练手用的,这里主要学到三个知识点:

1.Python的线程原来是在time模块下

2.Python调用cmd命令行原来如此的简单,比C#简单的多

3.操作打开网页open一下就OK

衷心的强大哈,一定要学好!

人气教程排行