Python笔记---------------[]列表解析>>>[(x,y)forxinrange(3)foryinrange(5)][(0,0),(0,1),(0,2),(0,3),(0,4),(1,0),(1,1),(1,2),(1,3),(1,4),(2,0),(2,1),(2,2),(2,3...
分类:
编程语言 时间:
2015-09-21 08:04:17
阅读次数:
223
Email:qianlxc@126.comFree time:8:007:00a.m ~ 11:00 12:00p.mIntroduction:我是一个热情的人。开朗的人。活泼的人。(小编觉得用逗号分开比较好我喜欢交际,喜欢沟通。我的理想是做一个软件硬件都能有扎实基础,同时具备很强的工程实践能力与学...
分类:
其他好文 时间:
2015-09-21 07:02:48
阅读次数:
146
QuestionGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given...
分类:
其他好文 时间:
2015-09-21 07:01:22
阅读次数:
159
You executed the following query:
Considering that all the redo logs are available, what information can you derive from the output of the preceding query?
考虑到所有重做日志可用,什么样的信息来自于上图的查询结果?
A.The time wh...
分类:
其他好文 时间:
2015-09-21 01:38:54
阅读次数:
287
百忙之中抽出时间学python,第一个程序如下:里面涉及到了两种重要的数据结构:链表和字典;还有字符串的若干操作,包括去掉字符串中的空格;还有如果像awk一样将一行split1 #!/usr/bin/python 2 import time 3 import os 4 import sys ...
分类:
编程语言 时间:
2015-09-21 01:28:16
阅读次数:
190
本文对PyExcelerate 0.6.7 libxl 3.6.2 XlsxWriter 0.7.3 三个python库对比,告诉你哪个才是写xlsx文件最快的库,并且做出我的推荐。
分类:
编程语言 时间:
2015-09-21 01:21:14
阅读次数:
619
结合之前对TF-IDF算法的分析,本文采用python对算法加以实现,并结合k-means算法实现简单的文本聚类。
分类:
编程语言 时间:
2015-09-21 01:20:14
阅读次数:
242
from:http://blog.csdn.net/chenjinyu_tang/article/details/8136841好久没有学习python了,应为工作的需要,再次拾起python,唤起记忆。当函数的参数不确定时,可以使用*args 和**kwargs,*args 没有key值,**kw...
分类:
编程语言 时间:
2015-09-21 00:10:54
阅读次数:
159
1. 删除数据:delete语句:语法:DELETE FROM table_name;(1),无条件删除:SQL> create table testdel 2 as select * from userinfo;表已创建。SQL> delete from testdel;已删除4行。SQL> .....
分类:
数据库 时间:
2015-09-20 23:53:08
阅读次数:
214
两种方法:1. 在创建表的时候将数据从其他表中复制过来(并且表的结构也复制过来):语法: CREATE TABLE table_nameASSELECT column1,......|* FROM table_old;SQL>SQL> create table userinfo_new 2 AS.....
分类:
数据库 时间:
2015-09-20 23:51:28
阅读次数:
202