在Python中提交JSON数据通常使用`requests`库的`post`方法。以下是一个简单的示例,展示了如何使用`requests`库提交JSON数据:
import requests定义要提交的JSON数据json_data = {"key": "value"}设置请求头,指定内容类型为JSONheaders = {"Content-Type": "application/json"}发送POST请求,包含JSON数据response = requests.post("https://example.com/api", json=json_data, headers=headers)打印响应内容print(response.text)
请确保在使用`requests.post`方法时,将`json`参数设置为你想要发送的Python字典对象,同时设置`Content-Type`头为`application/json`。

