上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: https://blog.csdn.net/resolute123/article/details/77304973 阅读全文
posted @ 2019-10-14 16:29 wy0925 阅读(298) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Fhujinwu/article/details/85851587 阅读全文
posted @ 2019-10-12 09:54 wy0925 阅读(1826) 评论(0) 推荐(0) 编辑
摘要: 一, 海龟动作: 移动和绘制 forward()| fd() 前进多少 backward()|bk()|back()后退 right()|rt() 右转多少度 left() 左转多少度 goto()|setpos()|setposition()前往/定位 setx() 设置X坐标 sety() 设置 阅读全文
posted @ 2019-09-17 10:53 wy0925 阅读(3289) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/e4e4f7f3767d 阅读全文
posted @ 2019-09-09 17:09 wy0925 阅读(118) 评论(0) 推荐(0) 编辑
摘要: svn log -v -r {2019-8-11}:{2019-8-16} -l 30 | sed -n '/wangyue01/,/--$/ p'其中:-r {2018-9-10}:{2018-9-25}:通过-r来指定时间段-v:表示显示详细信息sed -n '/danni/,/--$/ p': 阅读全文
posted @ 2019-08-16 16:26 wy0925 阅读(1368) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zt3032/article/details/85293310 阅读全文
posted @ 2019-08-15 15:17 wy0925 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 缓存框架的核心目标: 1)较少的代码: 缓存应该尽可能快, 因此围绕缓存后的所有框架代码应该保持在绝对最小值, 特别是对于获取操作 2)一致性: 缓存API应该是提供跨越不同缓存后端的一致接口 3)可扩展性: 基于开发人员的需求, 缓存API应该可以在应用程序级别扩展 缓存: Django内置了缓存 阅读全文
posted @ 2019-08-13 17:48 wy0925 阅读(104) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/chen1042246612/article/details/84327046 https://www.imooc.com/wenda/detail/396536 阅读全文
posted @ 2019-08-13 15:10 wy0925 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 参考https://blog.csdn.net/qq_34788903/article/details/87889451 可参考视频 : https://www.bilibili.com/video/av57516522/?p=20 BookInfo.objects.all()的这个objects是 阅读全文
posted @ 2019-08-13 09:54 wy0925 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1.结论: cpu密集型代码(各种循环处理, 计算等等);使用多进程 IO密集型代码(文件处理,网络爬虫等): 使用多线程 2,解释: 单线程是只有一条公路而且是单车道,只能同时行驶一辆汽车; 多线程是只有一条公路,但是是多车道,可以同时行驶多辆汽车; 多进程是有很多条公路,每条公路可能是单车道也可 阅读全文
posted @ 2019-08-07 09:56 wy0925 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 21 下一页