官方网站 : www.python.org
Python is an interpreted, interactive, object-oriented programming language. It is often compared to Tcl, Perl, Scheme or Java.
Python combines remarkable power with very clear syntax. It has modules, classes, exceptions, very high level dynamic data types, and dynamic typing. There are interfaces to many system calls and libraries, as well as to various windowing systems (X11, Motif, Tk, Mac, MFC). New built-in modules are easily written in C or C++. Python is also usable as an extension language for applications that need a programmable interface.
The Python implementation is portable: it runs on many brands of UNIX, on Windows, OS/2, Mac, Amiga, and many other platforms. If your favorite system isn't listed here, it may still be supported, if there's a C compiler for it. Ask around on news:comp.lang.python -- or just try compiling Python yourself.
ZOPE: www.zope.org
Zope is an open source application server for building content management systems, intranets, portals, and custom applications. The Zope community consists of hundreds of companies and thousands of developers all over the world, working on building the platform and Zope applications. Zope is written in Python, a highly-productive, object-oriented scripting language.
plone: www.plone.org
Plone: A user friendly and powerful open source Content Management System
中文python学习:
www.dohao.net(现在好象挂了?)
www.python.cn
...
python下载:
http://python.org/download/
资源下载:
Programming Python, 2nd Edition (O'Reilly)
http://www.osbbs.com/dl/Programming Python, 2nd Edition (O'Reilly).chm
很全很经典了python学习入门资料
OReilly - Learning Python:
http://www.osbbs.com/dl/OReilly - Learning Python.chm
OReilly - Python Cookbook.chm:
http://www.osbbs.com/dl/OReilly - Python Cookbook.chm
经典中的经典,我的最爱.
OReilly - Python Standard Library.chm
http://www.osbbs.com/dl/OReilly - Python Standard Library.chm
python标准库说明
thinking in python.chm
http://www.osbbs.com/dl/thinking in python.chm
也还不错~我看得比较投入
PythonInNutshell.zip
http://www.osbbs.com/dl/PythonInNutshell.zip
传说中的经典,不过一直没来得及看.
sockets.pdf
http://www.osbbs.com/dl/sockets.pdf
python的socket编程
diveintopython-html-5.4.zip
http://www.osbbs.com/dl/diveintopython-html-5.4.zip
《深入python》
html-2.3.4.zip
http://www.osbbs.com/dl/html-2.3.4.zip
python2.3.4的手册
LovePython.zip
http://www.osbbs.com/dl/LovePython.zip
Addison-Wesley Python Programming with the Java Class Libraries.chm
http://www.osbbs.com/dl/Addison-Wesley Python Programming with the Java Class Libraries.chm
OReilly - Python Programming on Win32.chm
http://www.osbbs.com/dl/OReilly - Python Programming on Win32.chm
python的win32编程讲解
Win32.zip
http://www.osbbs.com/dl/Win32.zip
上面一书的源码
python2.3tut.zip
http://www.osbbs.com/dl/python2.3tut.zip
O'Reilly - Python & XML.rar
http://www.osbbs.com/dl/O'Reilly - Python & XML.rar
cjkcodecs-1.0.3.zip
http://www.osbbs.com/dl/cjkcodecs-1.0.3.zip
支持东方文字
gb2312.zip
http://www.osbbs.com/dl/gb2312.zip
CANVAS3_VivianLi.rar
http://www.osbbs.com/dl/CANVAS3_VivianLi.rar
python写的安全检测程序
NeoBoard-1.1.tar.gz
http://www.osbbs.com/dl/NeoBoard-1.1.tar.gz
python写的论坛程序
py2exe-0.4.2.win32-py2.3.exe
http://www.osbbs.com/dl/py2exe-0.4.2.win32-py2.3.exe
将python脚本编译为.exe
PIL-1.1.4.win32-py2.3.exe
http://www.osbbs.com/dl/PIL-1.1.4.win32-py2.3.exe
图象库
upload.zip
http://www.osbbs.com/dl/upload.zip
python写上传程序
tkinter.chm
http://www.osbbs.com/dl/tkinter.chm
Oedipus-0.10.tar.gz
http://www.osbbs.com/dl/Oedipus-0.10.tar.gz
中文python学习资料:
Python 語言進階.pdf
http://www.osbbs.com/dl/Python 語言進階.pdf
皮大庆的Python学习笔记.pdf
http://www.osbbs.com/dl/皮大庆的Python学习笔记.pdf
王纯业的Python学习笔记.pdf
http://www.osbbs.com/dl/王纯业的Python学习笔记.pdf
葉平的Python教程.pdf
http://www.osbbs.com/dl/葉平的Python教程.pdf
一个python学习论坛的QQ群:
2567903
python邮件组:
www.python.cn

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

The article discusses the role of virtual environments in Python, focusing on managing project dependencies and avoiding conflicts. It details their creation, activation, and benefits in improving project management and reducing dependency issues.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
