Python
iteye_19635
这个作者很懒,什么都没留下…
展开
-
移除文件中的BOM头--in Python
#!/usr/bin/python #Remove BOM head and replace the Windows linefeeds with the Unix linebreak. #The script search the jsp files in the current directory by defalut. #You can specify the directory an...2009-07-16 13:27:34 · 121 阅读 · 0 评论 -
ByteofPython 笔记
用MindMap 做的笔记。2009-08-14 12:24:22 · 113 阅读 · 0 评论 -
Divie into Python 读书笔记 第三章
List 1.list [] 定义 2.List有负索引,list[-k]=lisk[n-k] 3.list的切片slice li[m,n],从m到n(不包括) 3.1 m到n没有区间,返回空的list 3.2 list[:n] 返回从o到n的list 3.3 list[n:] 返回n后面所有的list 4 4.1 list.append() 向list添加元素 ...2009-08-25 22:26:08 · 175 阅读 · 0 评论