summaryrefslogtreecommitdiff
path: root/basic_python
diff options
context:
space:
mode:
authorSantosh G. Vattam2009-11-16 19:46:16 +0530
committerSantosh G. Vattam2009-11-16 19:46:16 +0530
commit584df9693f6023e41d820345164dc653c6149a05 (patch)
tree4f23bf8d73aee26e606564490f56aa0791f6208b /basic_python
parent18b4812faaf8b9dc39847647709eea6a0554e786 (diff)
downloadsees-584df9693f6023e41d820345164dc653c6149a05.tar.gz
sees-584df9693f6023e41d820345164dc653c6149a05.tar.bz2
sees-584df9693f6023e41d820345164dc653c6149a05.zip
Updated Strings and Dictionaries with minor edits.
Diffstat (limited to 'basic_python')
-rw-r--r--basic_python/strings_dicts.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/basic_python/strings_dicts.rst b/basic_python/strings_dicts.rst
index e73a33e..b508a3d 100644
--- a/basic_python/strings_dicts.rst
+++ b/basic_python/strings_dicts.rst
@@ -179,6 +179,22 @@ Observe that the whitespaces between the words have not been removed.
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
==============================