- 博客(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关注的人