获取您的
Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
import requests url = 'https://w3schools.com/python/demopage.php' #to demonstrate the 'timeout' parameter, we set the timeout to 0.001 to guarantee that the connection will be timed out: x = requests.head(url, timeout=0.001) print(x.status_code)
连接到 w3schools.com 超时。 (connect timeout=0.001)