python

超轻量级php框架startmvc

运用Python的webbrowser实现定时打开特定网页

更新时间:2020-06-25 22:24:01 作者:startmvc
运用webbrowser库中的一个函数实现自动打开浏览器:webbrowser.open(http://blog.csdn.net/arescnzj)运用t

运用webbrowser库中的一个函数实现自动打开浏览器:


webbrowser.open(http://blog.csdn.net/arescnzj)

运用time库中的函数获取当前时间以及实现定时功能:


print"当前时间:%s"%time.ctime()
time.sleep(5) #定时5秒后执行

完整代码:


import webbrowser
import time
print"当前时间:%s"%time.ctime()
time.sleep(5)
webbrowser.open(http://blog.csdn.net/arescnzj)

以上这篇运用Python的webbrowser实现定时打开特定网页就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

Python webbrowser 定时 网页