²Å·¢ÏÖ Python ±»ºÍгÁË
×òÌìÔÚÑо¿Á˼¸ÌìPHP-GTKºó£¬¾ö¶¨×ªÏòPython£¬ÒòΪPython¾ßÓжàÏß³ÌÕâ¸öÌØµã£¬ÔÚÓëϵͳ½»»¥·½ÃæÒ²±È½ÏÓÐÓÅÊÆ£¬ËäÈ»ÎÒºÜϲ»¶PHP£¬PHPÔÚÍøÒ³·½ÃæÒ²·Ç³£Ç¿´ó£¬µ«±Ï¾¹ÎÒ²»ÊǸãÍøÕ¾¿ª·¢µÄ¡£
ÏëϸöPython°É£¬·¢ÏÖËü¾ÓÈ»±»ºÍгÁË£¬Ì«¹îÒìÁË
°¦£¬ºÍгÓÐÀí£¬ÆÁ±ÎÎÞ×
Ïà¹ØÎĵµ£º
Ê×ÏÈ×ªÔØÒ»¶Î¹ØÓÚÍÆ¼öµÄѧϰpythonµÄÊé¼®£¨ÔÎÄÁ´½Ó£©£º
1.ѧϰ¡¶A Byte of Python¡·£¬ÖÐÎÄÒëÃûΪ¡¶Python¼òÃ÷½Ì³Ì£¨pdfÏÂÔØµØÖ·£©¡·£¬È«ÊéÏÂÀ´Ö»ÓÐ100¶àÒ³£¬¼òµ¥¸ÉÁ·£¬Í¨Ë×Ò×¶®£¬Êǹ«ÈϵÄPythonÈëÃŽ̡̳£ÎÒËäȻϵ½ÁË¡¶Python¼òÃ÷½Ì³Ì¡·pdf°æ£¬µ«ÊǾõµÃÆäÖеĴúÂë¿ÉÄÜÊÇÒòΪÒëÕßת»»ÎĵµÀàÐ͵ÄÔÒò£¬¸ñʽ±äµÃºÜÂÒ£¬ËùÒÔ× ......
2008-12-21
pythonÀàÐÍת»»¡¢ÊýÖµ²Ù×÷
¹Ø¼ü×Ö: pythonÀàÐÍת»»¡¢ÊýÖµ²Ù×÷
pythonÀàÐÍת»»
Java´úÂë
º¯Êý ÃèÊö
int(x [,base ])   ......
And last here is the overload operators example:
# map() takes two (or more) arguments, a function and a list to apply the function to
# lambda can be put anywhere a function is expected
# map() calls lambada for every element in the self list
# since Vector has overloaded __getitem__ and __len_ ......
#!/usr/bin/env python
#coding=utf-8
def buildConnectionString(params):
return ":".join(["%s=%s" %(k, v) for k, v in params.items()])
if __name__ == "__main__":
myParams = {"server":"mpilgrim", \
&nbs ......