码迷,mamicode.com
首页 >  
搜索关键字:python list    ( 182949个结果
学习网站列表
Math: https://projecteuler.net/about Pygame: http://nullege.com/ Python: https://www.python.org/...
分类:Web程序   时间:2014-05-18 18:43:54    阅读次数:325
在html中写python代码的语法和特点-----基于webpy的http服务器
在html文件中写python语法的内容,的注意事项: 1:python程序中的变量通过下面方法传入到html: 1:通过全局变量 :全局变量是不需要用$def with语法实现传递的,只要定义了 在html中就可以用,例子如下: =================================================================== #模板公共变量,下...
分类:编程语言   时间:2014-05-18 10:33:55    阅读次数:294
[矩阵+线段树] zoj 3772 Calculate the Function
题目链接: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5235 Calculate the Function Time Limit: 2 Seconds      Memory Limit: 65536 KB You are given a list of numbers A1 A2 .. AN...
分类:其他好文   时间:2014-05-18 09:52:49    阅读次数:410
Windows上python开发--2安装django框架
windows上配置django的开发环境...
分类:编程语言   时间:2014-05-18 03:16:54    阅读次数:274
Leetcode | Remove Duplicates from Sorted List I && II
Remove Duplicates from Sorted List IGiven a sorted linked list, delete all duplicates such that each element appear only once.For example,Given 1->1->...
分类:其他好文   时间:2014-05-18 01:41:31    阅读次数:361
Java List&Map简单初始化方法
Java中List与Map初始化的一些写法代码如下 复制代码 //初始化List List list = new ArrayList() { { add("obj1"); add("obj2"); add("objN"); ...
分类:编程语言   时间:2014-05-18 01:29:17    阅读次数:452
线性表运算--链式存储结构模板类实现
采用C++模板类实现 1 #ifndef _List_H_ 2 #define _List_H_ 3 #include 4 #include "stdlib.h" 5 template 6 class CNode 7 { 8 public: 9 T data; 10 ...
分类:其他好文   时间:2014-05-18 00:38:59    阅读次数:407
C++ PRIMER 第九章
顺序容器:vector list deque顺序容器适配器: stack queue priority_quequ(没见过,第一轮不管)C c; C c(c2); C c(b,e) ///b e 都是迭代器; c(n,t)///只用于顺序容器; C c(n) ///只用于顺序容器const list...
分类:编程语言   时间:2014-05-17 23:43:37    阅读次数:471
Python sorted
sorted函数:iterable:是可迭代类型;cmp:用于比较的函数,比较什么由key决定,有默认值,迭代集合中的一项;key:用列表元素的某个属性和函数进行作为关键字,有默认值,迭代集合中的一项;reverse:排序规则. reverse = True 或者 reverse = False,有...
分类:编程语言   时间:2014-05-17 23:36:24    阅读次数:511
Machine learning with python - Linear Regression
Machine learning with python Linear Regression 数据来自 cs229 Problem Set 1 (pdf)Data:q1x.dat,q1y.dat,q2x.dat,q2y.datPS1 Solution (pdf)从左上往右下 batchG...
分类:编程语言   时间:2014-05-17 23:05:44    阅读次数:525
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!