溫馨提示×

python打開網(wǎng)頁的方法有哪些

小億
298
2024-05-31 18:43:09
欄目: 編程語言

在Python中打開網(wǎng)頁有幾種方法,下面列舉了其中的一些:

  1. 使用urllib庫中的urlopen方法:
import urllib.request

response = urllib.request.urlopen('http://www.example.com')
html = response.read()
print(html)
  1. 使用requests庫:
import requests

response = requests.get('http://www.example.com')
html = response.text
print(html)
  1. 使用webbrowser庫:
import webbrowser

url = 'http://www.example.com'
webbrowser.open(url)

這些是一些常用的方法,具體使用哪種方法取決于你的需求和個人喜好。

0