Updated Strings and Dictionaries with minor edits.
authorSantosh G. Vattam <vattam.santosh@gmail.com>
Mon, 16 Nov 2009 19:46:16 +0530
changeset 76 814fb2d7c1d0
parent 75 8a962d946df7
child 77 708e1f6a9a89
child 101 e529bec52b6f
Updated Strings and Dictionaries with minor edits.
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
 ==============================