05 2019 档案
摘要:参考:https://www.cnblogs.com/melody210218/p/7120559.html
阅读全文
摘要:1 二分查找: 快速排序:参考 https://www.cnblogs.com/coderising/p/5708801.html 堆排序:https://www.cnblogs.com/chengxiao/p/6129630.html 归并排序:https://www.cnblogs.com/ch
阅读全文
摘要:参考:https://blog.csdn.net/qq_35321405/article/details/80270496
阅读全文
摘要:二: django中 views from django.template.context import RequestContext # Create your views here. def test(request): if request.method == 'POST': print re
阅读全文
摘要:views中 USER_DICT = { '1': {'name': 'root1', 'email': 'root@live.com'}, '2': {'name': 'root2', 'email': 'root@live.com'}, '3': {'name': 'root3', 'email
阅读全文
摘要:FBV urls: urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^home/', views.home),] views: def home(request): return render(request, 'home.html')
阅读全文
摘要:html views 参考:http://www.cnblogs.com/wupeiqi/articles/5702910.html
阅读全文
摘要:tortoisegit:https://download.tortoisegit.org/tgit/ 中文包: https://tortoisegit.org/download/ git:https://www.cnblogs.com/xuanwotianming153/p/8504762.html
阅读全文
摘要:参考:https://blog.csdn.net/wang__junhappy/article/details/80315798
阅读全文
摘要:参考:https://www.cnblogs.com/mmzuo-798/p/7264093.html
阅读全文
摘要:1 java的作用域以代码块为作用域 也就是{} 2 python中是以函数作为作用域:比如 def func(): if 1==1: name="a" print(name) func() 不会报错 因为Python是以函数作为作用域 3 js和Python一样是以函数作为作用域的 ps:(1)
阅读全文
摘要:参考:https://www.cnblogs.com/nxl0908/p/7245460.html
阅读全文
摘要:参考:http://www.cnblogs.com/wupeiqi/articles/5713330.html
阅读全文
摘要:mysql的if函数,例如:IF(expr1,expr2,expr3) 说明:如果 expr1是TRUE,则IF()的返回值为expr2; 否则返回值则为expr3实例场景:如果video_id为null,则直接返回空字符,避免不必要的查询影响效率:(SELECT if(isnull(video_i
阅读全文
摘要:参考一 :http://www.cnblogs.com/wupeiqi/articles/5713315.html 参考二:http://www.cnblogs.com/wupeiqi/articles/5713323.html
阅读全文
摘要:参考:https://www.cnblogs.com/koka24/p/5841826.html Redis 中文官网 http://www.redis.cn/ 使用教程 https://www.runoob.com/redis/redis-install.html redis基本操作文章: htt
阅读全文
摘要:参考:https://www.cnblogs.com/alex3714/articles/5248247.html 提高:http://www.cnblogs.com/alex3714/articles/5876749.html selectors模块 https://www.cnblogs.com
阅读全文