欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python打开网页

程序员文章站 2022-06-11 19:44:31
...
import webbrowser
import time

webbrowser.open("http://www.sina.com.cn")

# wait a while, and then go to another page
time.sleep(5)
webbrowser.open(
    "http://www.163.com"
 
    )
相关标签: Python Go