一、Django的路由分配系统 1个URL对应1个视图函数 1 2 3 4 5 6 7 8 9 from django.conf.urls import url from django.contrib import admin from APP import view urlpatterns = [ ...
分类:
其他好文 时间:
2019-10-15 09:53:04
阅读次数:
82
题目链接: "LightOJ 1027" Description You are in a maze; seeing $n$ doors in front of you in beginning. You can choose any door you like. The probability f ...
分类:
其他好文 时间:
2019-10-13 20:58:26
阅读次数:
116
git config 配置 Git 的相关参数。 Git 一共有3个配置文件: 1. 仓库级的配置文件:在仓库的 .git/.gitconfig,该配置文件只对所在的仓库有效。2. 全局配置文件:Mac 系统在 ~/.gitconfig,Windows 系统在 C:\Users\<用户名>\.git ...
分类:
其他好文 时间:
2019-10-12 20:41:41
阅读次数:
82
列表增、删、改、查a=[‘wuchao‘,‘jinxing‘,‘xiaohu‘,‘sanpan‘,‘ligang‘]1.查切片取索引出值,索引从左到右是从0开始算;从右到左是从-1来算print(a[1])#取第二个值print(a[1:-1])#从第二取到倒数第二个值print(a[1:-1:1])#从左到右一个一个
分类:
其他好文 时间:
2019-10-11 00:59:36
阅读次数:
88
题目: Summation Write a program that finds the summation of every number from 1 to num. The number will always be a positive integer greater than 0. For ...
分类:
其他好文 时间:
2019-10-10 22:14:24
阅读次数:
80
https://stackoverflow.com/a/24394578/3782855 You don't need the ValidationHttpRequestWrapper solution since MVC 4. According to this link. Here is my ...
分类:
Web程序 时间:
2019-10-10 18:40:25
阅读次数:
117
mean shift 的MATLAB程序 凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 1. mean shift 简介 mean shift, 写的更符合国人的习惯,应该是mean of shift,也就是平均偏移量,或者偏移均值向量。在明确了含义之后, ...
分类:
其他好文 时间:
2019-10-10 11:18:56
阅读次数:
69