在做爬虫时请求网页的requests库是必不可少的,我们常常会用到 res = resquests.get(url) 方法,在获取网页的html代码时常常使用res的text属性: html = res.text,在下载图片或文件时常常使用res的content属性: with open(filename, 'wb') as fp: fp.write(res.content) 下面我们来看看 'text' 和 'content' 的不同之处: 输出本博客的响应对象的 text import re…
常见的 post 提交数据类型有四种: 1.第一种:application/json:这是最常见的 json 格式,也是非常友好的深受小伙伴喜欢的一种,如下{"input1":"xxx","input2":"ooo","remember":false} json的数据在如下查看: 2.第二种:application/x-www-form-urlencoded:浏览器的原生 form 表单,如果不设置enct…
格式一:(无参无返) public void fangcheng() { Console.WriteLine("请输入a的值"); double a = int.Parse(Console.ReadLine()); Console.WriteLine("请输入b的值"); double b = int.Parse(Console.ReadLine()); Console.WriteLine("请输入c的值"); double c = int.Pa…