diff options
author | Santosh G. Vattam | 2009-08-20 22:42:58 +0530 |
---|---|---|
committer | Santosh G. Vattam | 2009-08-20 22:42:58 +0530 |
commit | 8091638ab6a88db96f51a51e73a2f9242ca78ddf (patch) | |
tree | bc1e66dac55b36ecbc8ae54c645e9482fdc2fb85 /basic_python/intro.rst | |
parent | 20a73272195e09a3c8e344f89110b8e70bd2b27b (diff) | |
download | sees-8091638ab6a88db96f51a51e73a2f9242ca78ddf.tar.gz sees-8091638ab6a88db96f51a51e73a2f9242ca78ddf.tar.bz2 sees-8091638ab6a88db96f51a51e73a2f9242ca78ddf.zip |
Added content to introduction.
Diffstat (limited to 'basic_python/intro.rst')
-rw-r--r-- | basic_python/intro.rst | 58 |
1 files changed, 41 insertions, 17 deletions
diff --git a/basic_python/intro.rst b/basic_python/intro.rst index 3168cce..5846c8f 100644 --- a/basic_python/intro.rst +++ b/basic_python/intro.rst @@ -14,21 +14,45 @@ The system requirements: -Introduction -============ - - The Python programming language was created by a dutch named Guido van Rossum. - The idea of Python was conceived in December 1989. The name Python has nothing - to do with the reptilian, but its been named after the 70s comedy series - "Monty Python's Flying Circus", since it happens to be Guido's favourite - TV series. - - Current stable version of Python is 2.6.x, although Python 3.0 is also the stable - version, it is not backwards compatible with the previous versions and is hence - not entirely popular at the moment. This material contains material pertaining - to the 2.6.x series. - -The Python Interpreter -====================== +1. Introduction +=============== + +The Python programming language was created by a dutch named Guido van Rossum. +The idea of Python was conceived in December 1989. The name Python has nothing +to do with the reptilian, but its been named after the 70s comedy series +"Monty Python's Flying Circus", since it happens to be Guido's favourite +TV series. + +Current stable version of Python is 2.6.x, although Python 3.0 is also the stable +version, it is not backwards compatible with the previous versions and is hence +not entirely popular at the moment. This material will focus on the 2.6.x series. -
\ No newline at end of file +Python is licensed under the Python Software Foundation License (PSF License) +which is GPL compatible Free Software license (excepting license version 1.6 and 2.0) +It is a no strings attached license, which means the source code is free to modify +and redistribute. + +The Python docs define Python as "Python is an interpreted, object-oriented, +high-level programming language with dynamic semantics." A more detailed summary +can be found at http://www.python.org/doc/essays/blurb.html. Python is a language that +has been designed to help the programmer concentrate on solving the problem at hand +and not worry about the programming language idiosyncrasies. + +Python is a highly cross platform compatible language on account of it being an +interpreted language. It is highly scalable and hence has been adapted to run on +the Nokia 60 series phones. Python has been designed to be readable and easy to use + +**Resources available for reference** + +* Web: http://www.python.org +* Doc: http://www.python.org/doc +* Free Tutorials: + * Official Python Tutorial: http://docs.python.org/tut/tut.html + * Byte of Python: http://www.byteofpython.info/ + * Dive into Python: http://diveintopython.org/ + + + +1.1 The Python Interpreter +-------------------------- + |