本實例使用python的while語句來進行刷自己博客
注:本功能只為展示python的強悍功能,不為攻擊任何人,讓我們做良民網友
//引入所需要的python包
import webbrowser as web as是把包明子改或者叫連接為as
import time
import os
import random
//使用random包裡面的randint方法來隨機生成一個2到4的數字
count = random.randint(2,4)
//這裡是做了一個while嵌套
a = 0
while a <count:
a = a+1
i = 0
while i <= 19:
//使用webbrowser包裡面的ope_new_tab方法來打開相應的url地址
web.open_new_tab('http://xinsir.blog.51cto.com/5038915/1537866')
i = i + 1
//當打開第二個窗口前,停留1秒鐘時間
time.sleep(1)
else:
//如果已經刷滿20次,那麼等待1秒然後關閉浏覽器
time.sleep(1)
os.system('taskkill /F /IM chrome.exe')
《Python核心編程 第二版》.(Wesley J. Chun ).[高清PDF中文版] http://www.linuxidc.com/Linux/2013-06/85425.htm
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視頻+代碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
Python腳本獲取Linux系統信息 http://www.linuxidc.com/Linux/2013-08/88531.htm
在Ubuntu下用Python搭建桌面算法交易研究環境 http://www.linuxidc.com/Linux/2013-11/92534.htm
Python 的詳細介紹:請點這裡
Python 的下載地址:請點這裡