获取您的
Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
import requests url = 'https://w3schools.com/python/demopage2.php' myobj = {'somekey': 'somevalue'} #use the 'cookies' parameter to send cookies to the server: x = requests.post(url, data = myobj, cookies = {"favcolor": "Red"}) print(x.text) #the 'demopage2.php' prints the value of the 'favcolor' cookie.
<!DOCTYPE html>
<html>
<body>
<p>最喜欢的颜色:红色</p>
</body>
</html>