欢迎加入Python爱好者QQ群(Pythoner):103441184

日期:11-10-21 |  分类:Python |  标签: |  0 Comments

日志在监视程序运行状态、发现程序潜在问题、调试错误等方面发挥着重要的作用。 转另一篇关于Python中logging模块介绍的文章: 转自: http://blog.donews.com/limodou/archive/2005/02/16/278699.aspx 在新发布的crawl 2.1.1中使用了logging,下面把它的使

阅读剩余部分...

日期:11-10-21 |  分类:Python |  标签: |  0 Comments

本文转自: http://blog.sina.com.cn/s/blog_4b5039210100f1wv.html 一般情况下,一些程序的调试过程中我们会让它输出一些信息,特别是一些大型的程序,我们通过这些信息可以了解程序的运行情况,python提供了一个日志模块logging,它可以把我们想要的信息全

阅读剩余部分...

日期:11-10-20 |  分类:Python |  标签: |  0 Comments

1,使用系统函数__import_() stringmodule = __import__ ( ' string ' ) 2,使用imp 模块 import imp stringmodule = imp . load_module ( ' string ' ,* imp . find_module ( ' string ' )) 3,使用exec import_string = import string as stringmodule exec

阅读剩余部分...

日期:11-10-20 |  分类:Python |  标签: |  0 Comments

# test.pyimport redef find_number(s): find_number('Today is October 20, 2011.') ['20', '2011'] return re.compile('(\d+)').findall(s)if __name__ == '__main__': import doctest module = __import__('test') print doctest.testmod(module) 程序输

阅读剩余部分...

日期:11-08-27 |  分类:Python |  标签: |  2 Comments

前几天我的Linux VPS出了问题,后来机房的技术告知只能重做系统了,杯具

阅读剩余部分...

日期:11-08-27 |  分类:Python |  标签: |  0 Comments

原文: http://www.hackbase.com/subject/2009-12-30/17137.html Python中的对象之间赋值时是按引用传递的,如果需要拷贝对象,需要使用标准库中的copy模块。 1. copy.copy 浅拷贝 只拷贝父对象,不会拷贝对象的内部的子对象。 2. copy.deepcopy 深拷贝 拷贝

阅读剩余部分...

日期:11-08-24 |  分类:Python |  标签: |  0 Comments

From test, i concluded that in following three cases the socket.recv(recv_size) will return. 1) After the connection was closed(for example, the client side called socket.close()) or any socket error occurred, it would return empty string.

阅读剩余部分...

日期:11-08-24 |  分类:Python |  标签: |  0 Comments

原文地址: http://code.activestate.com/recipes/408859/ An issue with socket.recv is how to know when you are done receiving data. A TCP stream guarantees the bytes will not arrive out of order or be sent more than once. But you do not know

阅读剩余部分...

日期:11-08-13 |  分类:Python |  标签: |  0 Comments

错误提示如下图所示: 网上查了一下,说是因为python版本问题而导致。 使用如下方法解决问题: [root@localhost ~]# which yum /usr/bin/yum [root@localhost ~]# vi /usr/bin/yum 将 #!/usr/bin/python 改为: #!/usr/bin/python2.4 参考: http://www.cxyba

阅读剩余部分...

日期:11-07-19 |  分类:Python |  标签: |  0 Comments

os.chdir(os.path.dirname(__file__))

阅读剩余部分...

日期:11-07-17 |  分类:Python |  标签: |  0 Comments

问题: 在64位Win7下安装PIL库,提示注册表中找不到Python2.7(肯定是有的)。 原因: PIL官方 http://www.pythonware.com/products/pil/ 提供的PIL二进制安装库都是32位的。 64位程序和32位程序检测注册表的位置是不一样的: 64-bit: HKLM|HKCU\SOFTWARE\ 3

阅读剩余部分...

日期:11-07-17 |  分类:Python |  标签: |  0 Comments

From http://www.codegood.com/downloads MySQL-python for Windows Distributions MySQL-python-1.2.2.win-amd64-py2.5.rar 862.5 KiB - May 2, 2009 MySQLdb 1.2.2 for Windows and Python 2.5 64 bit MySQL-python-1.2.2.win-amd64-py2.6.exe 1.0 MiB - M

阅读剩余部分...

redice's Blog  is powered by DedeCms |  Theme by Monkeii.Lee |  网站地图 |  本服务器由西安鲲之鹏网络信息技术有限公司友情提供

返回顶部