# !/usr/bin/python
# encoding:utf-8

import requests

#下面替换成您的数据
postdata={'name':'xiaochong'}
r=requests.post('http://xxxxxx(替换成您的网址)',data=postdata)
print(r.text)

相关文章:

  • 2022-12-23
  • 2021-11-19
  • 2021-06-06
  • 2022-12-23
  • 2021-05-16
  • 2021-08-19
  • 2022-12-23
猜你喜欢
  • 2021-11-19
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
相关资源
相似解决方案