TAG: Python (24 items)

chosen | 11/17/2008
python 学习笔记
http://www-128.ibm.com/developerworks/cn/linux/l-pyint/index1.htmlpython自省指南回答了if __name__ == '__mai...

chosen | 11/13/2008
map函数如何与多参数处理函数配合
http://groups.google.com/group/python-cn/browse_thread/thread/8320eb19da1e5c06/4db50e0265937fd8?#4db...

chosen | 11/03/2008
average & mean function in Python
def average(values): """Computes the arithmetic mean of a list of numbers. >...

chosen | 11/02/2008
在本地安装sqlite3
1. tar xzvf sqlite-3.3.8.tar.gz2. cd sqlite-3.3.83. ./configure --disable-tcl --prefix=/usr/local/sq...

chosen | 10/31/2008
Python开发编码规范
http://wiki.woodpecker.org.cn/moin/PythonCodingRule 1. Python Coding Rule --- hoxide 初译 drea...

chosen | 09/02/2008 | 1 comments
about VIM
python_fn.vim" Shortcuts:" ]t -- Jump to beginning of block" ]e -- Jump...

chosen | 08/09/2008
python 下多线程程序处理
http://pyprocessing.berlios.de/ Python processing Author: ...

chosen | 07/18/2008
Python 函数参数的传递
Python 中函数参数的传递是通过“赋值”来传递的。但这条规则只回答了函数参数传递的“战略问题”,并没有回答“战术问题”,也就...

chosen | 07/12/2008
python 复制(拷贝)对象
需求:你想复制一个对象.因为在Python中,无论你把对象做为参数传递,做为函数返回值,都是引用传递的.讨论:标准库中的copy模块提供了两个方法来实现拷贝.一个方法是copy,它返回和参数包含内容一...

chosen | 07/02/2008
fixing python error: RuntimeError: maximum recursion depth exceeded in cmp
http://desk.stinkpot.org:8080/tricks/index.php/2007/04/fixing-python-error-runtimeerror-maximum-recu...

chosen | 06/15/2008
dict 排序
Python Cookbook, 2nd EditionRecipe 5.4. Sorting Keys or Indices Basedon the Corresponding Valuesfrom...

chosen | 06/04/2008
Mixin 扫盲班
http://blog.csdn.net/lanphaday http://groups.google.com/group/python-cn/browse_thread/thread/97a568...

chosen | 06/03/2008
sqlite command
http://www.sqlite.com.cn/MySqlite/5/39.Html UPDATE sql-statement :...

lidongok | 11/13/2007
Python动态加载脚本的方法
Python动态加载脚本的方法 Tue, 2006-10-10 13:10 — Marchday ################### ## # ## cl...

lidongok | 09/25/2007 | 1 comments
一个Python程序的6次改进[转载]
原文出处:http://blog.csdn.net/tinydust/archive/2006/07/16/930496.aspx 一个Python程序的6次改进 有位朋友用CString类写了一...

lidongok | 09/25/2007
[python]如何提高网站的访问速度 - 从30秒到3秒的飞跃【转载】
http://www.douban.com/group/topic/1473339/2006年10月份,我开始对web开发产生了兴趣,并决定自己也尝试开发一个网站。在此之前,我做过3年的java ap...

lidongok | 08/29/2007
Type ArtProvider , wxPython中可以直接调用的图标
http://www.wxpython.org/docs/api/wx.ArtProvider-class.htmlGTK+ NoteWhen running under GTK+ 2, GTK+ s...

lidongok | 08/15/2007 | 1 comments
Google的网页抓取蜘蛛是用PYTHON做的。附google搜索原理论文(1)
下面这篇论文是从网上找的,具体出处已经找不到了。关于网络爬虫是用Python写的相关介绍在第(4)章。有兴趣的读者,可以直接跳到第四章阅读。google搜索原理论文 这篇文章中,我们介绍了google...

lidongok | 08/15/2007
google搜索原理论文(2)
2. 系统特点 Google搜索引擎有两个重要特点,有助于得到高精度的搜索结果。第一点,应用Web的链接结构计算每个网页的Rank值,称为PageRank,将在98页详细描述它。第二点,Google利...

lidongok | 08/05/2007
一个简单的WEB服务器代码
import string,cgi,timefrom os import curdir,sepfrom BaseHTTPServer import BaseHTTPRequestHandler,HTT...

 Item 1-20 of 24  Next Last