![]() 记录我们的时代 |
Tag: python / 热门Tag |
|
关于python的网志:
KarriGell小结
1、什么是? KarriGell是个轻型web框架,使用python实现。 2、如何使用? 从here下 载Karrigell,解压后即可使用,超级绿色。自带服务器也很方便,另也能和Apache很好结
Searoom
@ 2008-10-04 12:03:24
Karrigell Web框架开发简介
Karrigell是一个语法简洁直观的Python Web框架。它支持任何一种数据库,ORM或者模板引擎,也可以让开发人员选择不同的编码方式。 Karrigell包自带一个功能强大的web服务器和一个
Searoom
@ 2008-10-03 16:18:07
用python和karrigell做网站.
从今天起,和大家一起学习用python/karrigell做网站. 对于能搜到这篇文章的兄弟,一定是对karrigell是什么有大致的了解了,但是如果不知道也没关系.这个单词虽然很复杂,而且金山词霸不
Searoom
@ 2008-10-03 16:08:37
使用iis6解释/运行python
已经在用win2003服务器,不想在装apache或其他的东西而又想尝鲜python的朋友,现在,你可以使用iis直接运行python网站! 上面的话像广告。下面的话则像技术文档。 使用iis来解释p
Searoom
@ 2008-10-03 15:29:57
python解华容道(二)我的改进解决方案
上次说了Leo Jay对华容道的解决方案,这里给出我的版本,速度比Leo Jay的速度快上20几倍。代码的解释将来有空的时候会写一篇文章解释。或许有时间的话还会弄个C版本的来解华容道程序^_^
3751
@ 2008-10-01 23:00:44
python解华容道(—)Leo Jay的解决方案
半瓶墨水在cpug公布了他写的华容道游戏。cpug的大牛Leo Jay马上给出了个python解法。代码条理异常清晰,充分体现了python的简洁优雅。这里给出他的代码。未完待续…
3751
@ 2008-09-27 10:00:48
Ruby vs Python
Seems most ppl(include me) agreed on that the major diff of ruby and python is on their cultrue. htt
Jan
@ 2008-08-22 22:12:24
[Python Challenge] Python Challenge
在网上找到一个关于一个叫做Python Challenge的网站, 上面的题目都是要需要一些编程工作才能解决的,当然是推荐用Python来解决喽. 每个问题解决出来后,就可以看到一些关于这个问题的so
NGloom
@ 2008-07-31 12:12:00
Parallel Python
Parallel Python是python的分布式计算模块,其功能是可以以 函数+数据 的形式,将任务分布到Cluster中的各台机器的CPUs上进行运算。 同时Parallel Python的Cl
kaby
@ 2008-07-29 22:22:13
Notes on <Learning Python>
Part II. Types and Operations 1.Manual type testing is usually not the right thing to do in Python.
Tag:
python
wanderer
@ 2008-05-20 18:33:50
Notes_3_on <Learning Python>
Part IV. Functions 1. Nested function can assign to names in nesting function. def foo(f_a): def bar
Tag:
python
Jesse
@ 2008-05-29 22:16:27
Notes_6_on <Learning Python>
Part.V Modules 1. P260 from assigns one or more names to objects of the same name in another module.
Tag:
python
Jesse
@ 2008-06-05 21:15:18
Notes_5_on <Learning Python>
Part.IV Functions 1. A iteration contexts, including for loops, map calls and list comprehensions, a
Tag:
python
Jesse
@ 2008-05-31 22:31:27
Notes_4_on <Learning Python>
Part III .Statements and Syntax 1. use simple for loops instead of while or range. P183 2. Do not ex
Tag:
python
Jesse
@ 2008-05-31 21:41:43
Notes_2_on <Learning Python>
Part III .Statements and Syntax 1. Boolean and and or operators return a true or false operand objec
Tag:
python
wanderer
@ 2008-05-25 10:47:15
A gotcha with *if* in Python
(1). I was to compare two tuples: if tuple1 tuple2: .... (2). But these tuples contained expressions
Jesse
@ 2008-06-12 17:44:56
@simple_debug
Update(08-07-22): I continued with Learning Python , which enlightened me with this @. @ brings what
Tag:
python
Jesse
@ 2008-07-12 20:19:29
[Python]libgmail
一个用Python的访问Gmail的API, 项目地址如下: http://libgmail.sourceforge.net/ 功能蛮强大.可以发邮件,收邮件,还可以把Gmail当做SMTP,POP,
NGloom
@ 2008-07-19 13:19:19
[Python] 从Sina上爬天气..
# -*- coding: gb2312 -*- #中文支持 import urllib2 from HTMLParser import HTMLParser import re class MyHT
NGloom
@ 2008-07-18 13:03:14
Singleton In Python
半年没有往这个目录里加东西了吧,今天来吹吹灰,咳咳.. 从网上找到的找到的讲Python的设计模式东东,原址如下: http://www.python.org/workshops/1997-10/pr
NGloom
@ 2008-07-10 12:31:31
又一次的论文
JXTA实现P2P的组网 1 在迅速发展中的P2P(对等网络),解决P2P行业的技术标准,和一套有高性能,高伸缩性的网络的问题一直制约着P2P的发展。JXTA有着完善的设计思想,来解决P2P计算的开放
小飞
@ 2008-06-30 03:27:44
求最大最小最大值因数
问题: 对由123456789这九个数字组成的9位数进行分解质因数 例如 123457698=2x3x3x7x13x23x29x113,所以他的最大值因数是113 总共有362880种可能,从中找出最
3751
@ 2008-06-27 12:13:05
很有特色的python语言
# my first python program # program: David Zhang for i in range(1,10): for j in range(i,10): if i==j
Tag:
python
Crisp
@ 2006-06-11 11:17:00
(zz)python super
一、问题的发现与提出 在Python类的方法(method)中,要调用父类的某个方法,在Python 2.2以前,通常的写法如代码段1: 代码段1: class A: def __init__(s
Tag:
python
Crsky
@ 2008-05-30 18:17:03
python与中文字体
python读入和显示中文字体有些问题,网上搜了搜,发现下面这个链接还是给出了解决方法 主要是引入一个codecs的模块。 http://www.jorendorff.com/articles/uni
cmsgoogle
@ 2008-04-24 14:42:42
|
|
免费注册 -
已注册用户登入管理 -
热门关键词(Tags) -
常见问题帮助 -
设为首页 -
加入收藏夹 |