python连接mysql-mysqldb 经验

http://sourceforge.net/projects/mysql-python 如果你不确定你的python环境里有没有这个库,那就打开python shell,输入 import MySQLdb,如果返回错误信息

jopen 2014-12-07   19981   0

Python的NLP工具库汇总 经验

关于自然语言处理的重要Python工具的集合。 NLTK NLTK is a leading platform for building Python programs to work with human

jopen 2015-06-19   30230   0

Python 多进程实践 经验

多进程的方式可以增加脚本的并发处理能力, python 支持这种多进程的编程方式 在类unix系统中, python的os模块内置了fork 函数用以创建子进程 fork 方式创建子进程 import

pm45e 2015-08-03   17388   0

GitHub上有趣的python资料 经验

issue 分享自己觉得有趣的资源 本文的主题是 python ,正文如下: navigation Study meterials python django flask other raspberry

jopen 2014-08-28   37231   0

python2编码总结 经验

以下依次列出python2常遇到的几个问题及讲解。 # -*- coding:utf-8 -*- python2默认以ASCII编码,但是在实际编码过程中,我们会用到很多中文,为了不使包含中文

jopen 2016-01-13   15186   0

python 解析 XML文件 经验

如下使用xml.etree.ElementTree模块来解析XML文件。ElementTree模块中提供了两个类用来完成这个目的:

jopen 2016-01-16   18601   0

“最美天气”Python抓取天气 经验

“最美天气”Python抓取天气

jopen 2016-01-18   22375   0

python访问redis 经验

csdn.net/ubuntu64fan/article/details/50624293 python访问redis 1 Linux上安装redis a) 下载: $ wget http://download

1337035223 2016-02-02   11727   0
P18

  Python 代码调试技巧 文档

Python 代码调试技巧 2012-5-3 简介: Debug 对于任何开发人员都是一项非常重要的技能,它能够帮助我们准确的定位错误,发现程序中的 bug。python 提供了一系列 debug

dgww 2016-02-01   2437   0
P90

  python常用模块 文档

python中os模块中文帮助文档 文章分类:Python编程 python中os模块中文帮助文档 翻译者:butalnd 翻译于2010.1.7——2010.1.8,个人博客:http://butlandblog

504727360 2014-11-17   645   0
P

Python Phrasebook: Essential Code and Commands 文档

Python Phrasebook gives you the code phrases you need to quickly and effectively complete your programming projects in Python. Concise and Accessible Easy to carry and easy to uselets you ditch all those bulky books for one portable guide Flexible and Functional Packed with more than 100 customizable code snippetsso you can readily code functional Python in just about any situation

f74f 2015-01-18   1648   0
P

Python v3.3.0 文档 文档

Python的3.0版本,常被称为Python 3000,或简称Py3k。相对于Python的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0在设计的时候没有考虑向下兼容。Python 3 提供了一个脚本叫做 2to3。学习它。喜欢它。使用它。用 2to3 移植代码到 Python 3 是一个有关 2to3 工具能够自动整理的所有东西的参考手册。很多这些东西都是语法的变更,因此了解 Python 3 里面许多的语法变更是一个好的起点。(print 现在是一个函数,`x` 不能使用,等等。)

sinny 2015-05-07   4322   0
P

Dive Into Python 中文版 文档

Python 是 Guido van Rossum 于 20 世纪 90 年代早期在荷兰的 Stichting Mathematisch Centrum (CWI) 发明的,作为一门叫 ABC 的语言的后继。Guido 是 Python 的主要作者,尽管它包括了很多他人的贡献。CWI 发布的最后版本是 Python 1.2。1995 年,Guido 在 Reston,Virginia 的 Corporation for National Research Initiatives (CNRI) 继续进行 Python 的工作,他在此又发布了这个软件的多个版本。Python 1.6 是 CNRI 发布的最后版本。2000 年,Guido 和 Python 的核心团队转移到了 BeOpen.com,形成了 BeOpen PythonLabs 团队。Python 2.0 第一个也是唯一一个 BeOpen.com 发布的版本。<br> Python 1.6 发布后,Guido van Rossum 离开了 CNRI,同商业软件开发员一同工作。让 Python 和以 GNU Public License (GPL) 发布的软件一起工作的需求逐渐明朗起来。CNRI 和自由软件基金会 (Free Software Foundation, FSF) 进行了接触,得到对 Python 协议改动措辞的许可。Python 1.6.1 本质上与 Python 1.6 是相同的,只修正了小部分 bug,但却是用不同的协议发布,从而后续的版本都兼容 GPL 了。Python 2.1 是 Python 1.6.1 的衍生物,Python 2.0 也是。

bujisky 2012-11-07   387   0

python读取windows系统信息 代码段

需要使用win32api,win32con,win32file包,如下代码: import win32api import win32con import win32file from StringIO import StringIO class GetSysInformation: def __init__(self): # variable to write a flat file self.

eb5y 2015-01-06   1516   0
Python  

Python写计算器 代码段

# -*- coding: utf-8 -*- #author: Cullen #import the module from Tkinter import * from functools import partial import tkFont def get_input(entry, argu): entry.insert(END, argu) def backspace(entry): i

wn25 2015-01-12   2193   0
Python  

Python3.4 PIL的使用 代码段

from PIL import Image, ImageFilter, ImageDraw, ImageFont, ImageEnhance, ImageFilter image1 = Image.open('C:/Users/hengli/Desktop/1.jpg') image2 = Image.open('C:/Users/hengli/Desktop/2.jpg') def 图片大小(i

pe6y 2015-03-17   9331   0

python实现ftp上传文件 代码段

mport ftplib, sys ftp1 = ftplib.FTP('127.0.0.1', 'book', 'bookpw') ftp1.cwd('/Dir') ftp2 = ftplib.FTP('www.xxxx.com', 'xxx', 'xxxps') ftp2.cwd('/public') sock1 = ftp1.transfercmd('RETR a.zip') sock2 =

wdfd 2015-03-27   1096   0
Python  

Python读写 ini文件的代码 代码段

首先看下,读取ini文件,我们直接使用Python自带的模块ConfigParser来进行配置文件的读写 看下代码吧 def ReadConfig(configPath): configDict =

ybw8 2015-06-04   4119   0
Python  

python去除html标签 代码段

python去除html标签,自己写的,若有不足请指正: #! /usr/bin/env python #coding=utf-8 # blueel 2013-01-19 from HTMLParser

ybw8 2015-06-04   860   0
Python  

python的get set方法示例 代码段

class Critter(object): '''A virtual pet''' def __init__(self, name): print 'A new critter has been born!' self.__name = name def get_name(self): return self.__name def set_name(self, new_name): if new

nf83 2015-08-26   925   0
Python  
1 2 3 4 5 6 7 8 9 10