# HG changeset patch # User Santosh G. Vattam # Date 1258380976 -19800 # Node ID 814fb2d7c1d0070a6da9c37e0a22f6bc56fd08e6 # Parent 8a962d946df79c2641de59daf300aa13ca5d6a3c Updated Strings and Dictionaries with minor edits. diff -r 8a962d946df7 -r 814fb2d7c1d0 basic_python/strings_dicts.rst --- a/basic_python/strings_dicts.rst Thu Oct 08 01:15:11 2009 +0530 +++ b/basic_python/strings_dicts.rst Mon Nov 16 19:46:16 2009 +0530 @@ -179,6 +179,22 @@ transform the source string. The source string still remains the same. Remember that **strings are immutable**. +Introduction to the standard library +==================================== + +Python is often referred to as a "Batteries included!" language, mainly because +of the Python Standard Library. The Python Standard Library provides an extensive +set of features some of which are available directly for use while some require to +import a few **modules**. The Standard Library provides various built-in functions +like: + + * **abs()** + * **dict()** + * **enumerate()** + +The built-in constants like **True** and **False** are provided by the Standard Library. +More information about the Python Standard Library is available http://docs.python.org/library/ + I/O: Reading and Writing Files ==============================