自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 Python type创建类遇到的一个小问题

Python一切皆对象class foo: def su(self,a,b): return a+bobj = foo()print(foo,type(foo)) #<class '__main__.foo'>,<class 'type'>print(foo()) #<__main__.foo ob...

2020-02-29 23:31:29 167

转载 学习笔记(Python继承)

学习笔记(Python继承)有几种叫法(父类-子类、基类-派生类)先拿代码演示一下:class father: def work(self): print("work>>>>>") def car(self): print("car>>>>>>>>>")c...

2020-02-27 00:59:51 164

原创 反-反爬虫的一些Tips

反-反爬虫的一些TipsStep 1:每次请求更换一次 User-Agent首先通过pip下载 fake_useragent ,命令是:pip install fake_useragent下载完之后当然需要测试其是否下载成功,及其相关用法:import fake_useragentdef UserAgent(): user= fake_useragent.UserAgent()...

2020-02-11 18:38:45 163

转载 CentOS7搭建WordPress个人博客

1.安装Apacheyum -y install httpd启动httpdsystemctl start httpd.service设置开机启动systemctl enable httpd.service安装firewall配置防火墙yum -y install firewalld firewall-config启动并设置开机启动systemctl start firewalld...

2019-11-05 10:24:33 331 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除