Python's Library
This is an overview of the major modules from the Python Standard Library and other major Python repositories.
Sign Up for Our Free Newsletters
Thanks, You're in!
Python Categories
41 Articles in: The Python Library - Standard Library of Python
A Beginner's Guide to Python Syntax
This tutorial is part of a series on the fundamentals of Python. It covers the syntax used in Python programming. If you are new to Python, this tutorial is for you. If you are completely new to programming but have been using a computer for a little while, you should do fine with these tutorials. If you are completely new to computers, you may want to read through the tutorial "How A Computer Looks at Your Program".Python String Methods - 2 of 2
Python's built-in string methods are incredibly powerful. As the name implies, each of the following methods are available through class String. Every string object is an instance of that class and has these methods available. This is the first of a two-part reference on Python's built-in string methods.The Python Library Reference
If you just want to read the documentation on the Python library, this page is for you. The Python website has a complete discussion of every module that comes with the standard installation of Python. It may be terse or obtuse at times, and not every call is discussed in detail, but this is the "standard".The Effbot Guide to the Python Standard Library
The Python library is so vast that it is near impossible to know all attributes and all methods of all modules. Fortunately, you do not need to remember all of that. This guide by Fredrik Lundh offers a comprehensive treatment of every attribute and every method of every module in the Python Standard Library. If you would rather have the book, you can buy it from O'Reilly Media.
Object-oriented Programming and Python
If you still find yourself tempest-tossed about what object-oriented programming is and how to do it with Python, this page from Python.net offers a clearly written and well-rounded discussion on the subject. Another excellent discussion on the topic is by Matthew Reynolds at StarDeveloper.com.
View More

