发布时间:2016-05-22 20:53:55
Python 资源大全http://python.jobbole.com/84464/......【阅读全文】
发布时间:2016-05-11 22:50:50
转http://cndenis.iteye.com/blog/1754743介绍了 python2.x中 在内层修改外层局部变量的方法在Python 2.x中,函数内部可以定义函数,内层的函数可以读取外层函数的局部变量,但却不可以修改它.12345678#!/usr/bin/python def outter(): x = 1 def inner(): print("inn.........【阅读全文】
发布时间:2016-05-09 14:34:57
ubuntu 配置 /etc/vsftpd.conf,根据需要开启如下配置项: anonymous_enable=YES //表示开启匿名用户访问 anon_mkdir_write_enable=YES //允许匿名用户创建新文件 anon_umask=022 //匿名用户上传文件默认.........【阅读全文】
发布时间:2016-05-06 10:50:22
参考:为Python安装MySQL数据库模块:MySQLdbhttp://www.crifan.com/python_install_module_mysql_mysqldb/实测安装 MySQL-python-1.2.5 时也出现同样的问题:Cannot open include file: ‘config-win.h’: No such file or directory,文章给出的解决方法是:重新运行MySQL的安装程序,选择Modify,把“C Include Files.........【阅读全文】