如何打印返回的对象Python?

时间:2018-01-15 22:21:52

标签: python python-requests

我在自定义函数中使用requests库:

def add_advert(self, json_data):
       headers = {'Content-Type': 'application/json'}
       return requests.post(self.base_url + self.api_urls["add_advert"], 
  json=json_data, headers=headers,
                          auth=(self.api_key, ''))

并调用此函数:

response = api.add_advert(json_data=json_data)

如何显示变量response的内容?

我尝试过:打印response.content,打印response.json

1 个答案:

答案 0 :(得分:0)

假设"内容"您要显示的是响应有效负载... response.text

response.json() - .json是一个函数(假定json有效负载)