
笔记
文章平均质量分 78
本愚
这个作者很懒,什么都没留下…
展开
-
Python学习笔记
1. Eclipse多行注释 ctrl+/2. Tuple, string and number is immutable, while list is mutable.>>> t = 12345, 54321, 'hello!'>>> t[0] = 88888 Traceback (most recent call last): File "", line 1, i原创 2013-03-12 14:58:42 · 391 阅读 · 0 评论 -
Introduction to Data Mining
Notes from Introduction to Data Mining, Pang-Ning Tan, Michael Steinbach, Vipin Kumar, 机械工业出版社1. Process of KDD in databases:Input data -> Data Preprocessing -> Postprocessing-> Information原创 2013-03-12 14:57:22 · 1269 阅读 · 0 评论 -
VIM学习笔记
详情请参阅附件中上传的Vim用户手册中文版说明: (N)为Normal模式 (I) 为Insert模式 大小写敏感1. hjkl:左下上右 (N)2. x :删除光标所在字符,后续字符往前移动 (N)3. dd: 删除光标所在行,下面的行往上移 (N)4. J:把下一行接在光标所在行,即删除光标所在行末的'\n',增加一个空格,删除下一行行首的原创 2013-07-03 14:07:07 · 325 阅读 · 0 评论