摘要: 本次使用的是python 3.6先安装 pip install pillow from PIL import Imageimport osimg_path = r"H:\pythonworkspace\test\a.jpg"img_path_2 = r"H:\pythonworkspace\test 阅读全文
posted @ 2025-09-25 22:28 范若若 阅读(23) 评论(0) 推荐(0)
摘要: 1. 安装iis服务 2. 在站点的服务器证书中新建一个自签名证书,傻瓜式新建 3. 编辑该站点的绑定,新建https类型的服务,选择证书为2中新建的证书 4. 重启iis 阅读全文
posted @ 2021-08-05 19:40 范若若 阅读(68) 评论(0) 推荐(0)
摘要: https://jingyan.baidu.com/article/dca1fa6fa65406b0a4405293.html 阅读全文
posted @ 2021-07-27 19:31 范若若 阅读(130) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/zhuzhu1214/p/11540008.html 阅读全文
posted @ 2021-07-27 19:13 范若若 阅读(58) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/yyxianren/p/10839373.html 阅读全文
posted @ 2021-07-26 11:42 范若若 阅读(56) 评论(0) 推荐(0)
摘要: class fun(obj): def __init__(self): self.name="王" self.__age="10" def get(self): return self.__age f = fun() f.name = "老王" #可以访问到实例变量,但是访问不到self.__age 阅读全文
posted @ 2021-06-19 10:33 范若若 阅读(352) 评论(0) 推荐(0)
摘要: 1.安装wget https://www.imooc.com/article/17781 2.安装netstat yum -y install net-tools 阅读全文
posted @ 2021-05-31 12:25 范若若 阅读(470) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/lin434406218/article/details/54694900 阅读全文
posted @ 2021-04-28 14:41 范若若 阅读(97) 评论(0) 推荐(0)
摘要: 原因解释:这是mysql事务隔离的结果,InnoDB默认的隔离级别是可重复读(REPEATABLE READ),也就是在同一个事务中读取的值总是一样。所以为了感知到变化,必须重新获取一个事务(比方说关闭conneciton重新获取,或者调用commit,也可以改变mysql的事务隔离级别到READ 阅读全文
posted @ 2021-04-16 10:09 范若若 阅读(155) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/cobbliu/p/3872255.html 阅读全文
posted @ 2021-04-12 12:54 范若若 阅读(502) 评论(0) 推荐(0)