运用webbrowser库中的一个函数实现自动打开浏览器:
1
|
webbrowser. open (http: / / blog.csdn.net / arescnzj)
|
运用time库中的函数获取当前时间以及实现定时功能:
1
2
|
print "当前时间:%s" % time.ctime()
time.sleep( 5 ) #定时5秒后执行
|
完整代码:
1
2
3
4
5
|
import webbrowser
import time
print "当前时间:%s" % time.ctime()
time.sleep( 5 )
webbrowser. open (http: / / blog.csdn.net / arescnzj)
|
以上这篇运用Python的webbrowser实现定时打开特定网页就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/AresCNZJ/article/details/64132552