import webbrowser as web
import time
import os
count=0
while count count=count+1
#你要刷的博客
web.open_new_tab(这里是博客地址)
time.sleep(1)
else:
os.system('taskkill /f /im 360se.exe')
这里主要学到三个知识点:
1.python的线程原来是在time模块下
2.python调用cmd命令行原来如此的简单,比c#简单的多
3.操作打开网页open一下就ok
