在Python中打開網(wǎng)頁有幾種方法,下面列舉了其中的一些:
import urllib.request
response = urllib.request.urlopen('http://www.example.com')
html = response.read()
print(html)
import requests
response = requests.get('http://www.example.com')
html = response.text
print(html)
import webbrowser
url = 'http://www.example.com'
webbrowser.open(url)
這些是一些常用的方法,具體使用哪種方法取決于你的需求和個人喜好。