basic_python/intro.rst
author amit@thunder
Sun, 28 Feb 2010 19:27:33 +0530
changeset 86 be5f5faee38a
parent 85 65aa636caa57
child 87 0811d7bd4c75
permissions -rw-r--r--
Test
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
     1
============
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
     2
Basic Python
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
     3
============
1
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
     4
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
     5
This document is intended to be handed out at the end of the workshop. It has
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
     6
been designed for Engineering students who are Python beginners and have basic
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
     7
programming skills. The focus is on basic numerics and plotting using Python.
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
     8
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
     9
The system requirements:
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
    10
  * Python - version 2.5.x or newer.
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
    11
  * IPython
1
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
    12
  * Text editor - scite, vim, emacs or whatever you are comfortable with.
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
    13
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
    14
Introduction
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
    15
============
1
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
    16
31
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    17
The Python programming language was created by a dutch named Guido van Rossum.
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    18
The idea of Python was conceived in December 1989. The name Python has nothing
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    19
to do with the reptilian, but its been named after the 70s comedy series 
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    20
"Monty Python's Flying Circus", since it happens to be Guido's favourite 
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    21
TV series. 
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    22
86
amit@thunder
parents: 85
diff changeset
    23
It is a test.
85
65aa636caa57 Testing autobuilding review from SEES documentation
amit@thunder
parents: 67
diff changeset
    24
31
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    25
Current stable version of Python is 2.6.x, although Python 3.0 is also the stable
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    26
version, it is not backwards compatible with the previous versions and is hence
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    27
not entirely popular at the moment. This material will focus on the 2.6.x series.
1
dccb80025455 Added Basic Python Handout rst document.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents:
diff changeset
    28
  
31
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    29
Python is licensed under the Python Software Foundation License (PSF License) 
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    30
which is GPL compatible Free Software license (excepting license version 1.6 and 2.0)
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    31
It is a no strings attached license, which means the source code is free to modify
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    32
and redistribute.
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    33
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    34
The Python docs define Python as "Python is an interpreted, object-oriented, 
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    35
high-level programming language with dynamic semantics." A more detailed summary
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    36
can be found at http://www.python.org/doc/essays/blurb.html. Python is a language that
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    37
has been designed to help the programmer concentrate on solving the problem at hand
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    38
and not worry about the programming language idiosyncrasies.
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    39
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    40
Python is a highly cross platform compatible language on account of it being an 
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    41
interpreted language. It is highly scalable and hence has been adapted to run on 
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    42
the Nokia 60 series phones. Python has been designed to be readable and easy to use
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    43
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    44
**Resources available for reference**
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    45
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    46
* Web: http://www.python.org
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    47
* Doc: http://www.python.org/doc
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    48
* Free Tutorials:
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    49
    * Official Python Tutorial: http://docs.python.org/tut/tut.html
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    50
    * Byte of Python: http://www.byteofpython.info/
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    51
    * Dive into Python: http://diveintopython.org/
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    52
32
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    53
**Advantages of Python - Why Python??**
31
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    54
32
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    55
* Python has been designed for readability and ease of use. Its been designed in 
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    56
  such a fashion that it imposes readability on the programmer. Python does away
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    57
  with the braces and the semicolons and instead implements code blocks based on 
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    58
  indentation, thus enhancing readability. 
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    59
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    60
* Python is a high level, interpreted, modular and object oriented language.
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    61
  Python performs memory management on its own, thus the programmer need not bother
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    62
  about allocating and deallocating memory to variables. Python provides extensibility
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    63
  by providing modules which can be easily imported similar to headers in C and 
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    64
  packages in Java. Python is object oriented and hence provides all the object oriented
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    65
  characteristics such as inheritance, encapsulation and polymorphism.
32
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    66
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    67
* Python offers a highly powerful interactive programming interface in the form
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    68
  of the 'Interactive Interpreter' which will be discussed in more detail in the 
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    69
  following sections.
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    70
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    71
* Python provides a rich standard library and an extensive set of modules. The 
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    72
  power of Python modules can be seen in this slightly exaggerated cartoon
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    73
  http://xkcd.com/353/
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    74
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    75
* Python interfaces well with most other programming languages such as C, C++ 
628d035d559a Added Advantages of Python section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 31
diff changeset
    76
  and FORTRAN.
31
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    77
33
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
    78
Although, Python has one setback. Python is not fast as some of the compiled 
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
    79
languages like C or C++. Yet, the amount of flexibility and power more than make
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
    80
up for this setback.
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
    81
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
    82
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
    83
The Python Interpreter
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
    84
======================
31
01ea4544ad81 Added content to introduction.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 3
diff changeset
    85
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
    86
The Interactive Interpreter
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
    87
~~~~~~~~~~~~~~~~~~~~~~~~~~~
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    88
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    89
Typing *python* at the shell prompt on any standard Unix/Gnu-Linux system and
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    90
hitting the enter key fires up the Python 'Interactive Interpreter'. The Python
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    91
interpreter is one of the most integral features of Python. The prompt obtained
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    92
when the interactive interpreter is similar to what is shown below. The exact
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    93
appearance might differ based on the version of Python being used. The ``>>>``
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    94
thing shown is the python prompt. When something is typed at the prompt and the
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
    95
enter key is hit, the python interpreter interprets the command entered and
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
    96
performs the appropriate action. All the examples presented in this document are
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
    97
to be tried hands on, on the interactive interpreter.
33
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
    98
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
    99
::
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
   100
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
   101
  Python 2.5.2 (r252:60911, Oct  5 2008, 19:24:49) 
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
   102
  [GCC 4.3.2] on linux2
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
   103
  Type "help", "copyright", "credits" or "license" for more information.
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
   104
  >>> 
b850a2b9fc21 Added interpreter content.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 32
diff changeset
   105
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   106
Lets try with an example, type ``print 'Hello, World!'`` at the prompt and hit
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   107
the enter key. 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   108
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   109
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   110
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   111
  >>> print 'Hello, World!'
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   112
  Hello, World!
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   113
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   114
This example was quite straight forward, and thus we have written our first
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   115
line of Python code. Now let us try typing something arbitrary at the prompt.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   116
For example: 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   117
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   118
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   119
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   120
  >>> arbit word
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   121
    File "<stdin>", line 1
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   122
      arbit word
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   123
              ^
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   124
  SyntaxError: invalid syntax
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   125
  >>>
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   126
    
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   127
The interpreter gave an error message saying that 'arbit word' was invalid
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   128
syntax which is valid. The interpreter is an amazing tool when learning to
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   129
program in Python. The interpreter provides a help function that provides the
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   130
necessary documentation regarding all Python syntax, constructs, modules and
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   131
objects. Typing *help()* at the prompt gives the following output:
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   132
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   133
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   134
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   135
  >>> help()
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   136
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   137
  Welcome to Python 2.5!  This is the online help utility.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   138
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   139
  If this is your first time using Python, you should definitely check out
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   140
  the tutorial on the Internet at http://www.python.org/doc/tut/.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   141
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   142
  Enter the name of any module, keyword, or topic to get help on writing
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   143
  Python programs and using Python modules.  To quit this help utility and
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   144
  return to the interpreter, just type "quit".
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   145
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   146
  To get a list of available modules, keywords, or topics, type "modules",
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   147
  "keywords", or "topics".  Each module also comes with a one-line summary
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   148
  of what it does; to list the modules whose summaries contain a given word
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   149
  such as "spam", type "modules spam".
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   150
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   151
  help> 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   152
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   153
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   154
As mentioned in the output, entering the name of any module, keyword or topic
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   155
will provide the documentation and help regarding the same through the online
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   156
help utility. Pressing *Ctrl+d* exits the help prompt and returns to the
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   157
python prompt. 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   158
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   159
Let us now try a few examples at the python interpreter. 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   160
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   161
Eg 1:
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   162
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   163
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   164
  >>> print 'Hello, python!'
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   165
  Hello, python!
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   166
  >>>
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   167
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   168
Eg 2:
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   169
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   170
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   171
  >>> print 4321*567890
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   172
  2453852690
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   173
  >>> 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   174
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   175
Eg 3:
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   176
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   177
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   178
  >>> 4321*567890
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   179
  2453852690L
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   180
  >>>
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   181
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   182
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   183
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   184
  Note: Notice the 'L' at the end of the output. The 'L' signifies that the
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   185
  output of the operation is of type *long*. It was absent in the previous
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   186
  example because we used the print statement. This is because *print* formats
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   187
  the output before displaying.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   188
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   189
Eg 4:
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   190
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   191
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   192
  >>> big = 12345678901234567890 ** 3
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   193
  >>> print big
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   194
  1881676372353657772490265749424677022198701224860897069000
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   195
  >>> 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   196
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   197
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   198
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   199
  This example is to show that unlike in C or C++ there is no limit on the
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   200
  value of an integer.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   201
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   202
Try this on the interactive interpreter:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   203
``import this``
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   204
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   205
*Hint: The output gives an idea of Power of Python*
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   206
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   207
*ipython* - An enhanced interactive Python interpreter
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   208
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   209
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   210
The power and the importance of the interactive interpreter was the highlight
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   211
of the previous section. This section provides insight into the enhanced
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   212
interpreter with more advanced set of features called **ipython**. Entering
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   213
*ipython* at the shell prompt fires up the interactive interpreter. 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   214
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   215
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   216
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   217
  $ ipython
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   218
  Python 2.5.2 (r252:60911, Oct  5 2008, 19:24:49) 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   219
  Type "copyright", "credits" or "license" for more information.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   220
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   221
  IPython 0.8.4 -- An enhanced Interactive Python.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   222
  ?         -> Introduction and overview of IPython's features.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   223
  %quickref -> Quick reference.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   224
  help      -> Python's own help system.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   225
  object?   -> Details about 'object'. ?object also works, ?? prints more.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   226
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   227
  In [1]: 
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   228
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   229
This is the output obtained upon firing ipython. The exact appearance may
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   230
change based on the Python version installed. The following are some of the
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   231
various features provided by **ipython**:
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   232
  
40
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   233
    Suggestions - ipython provides suggestions of the possible methods and
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   234
    operations available for the given python object.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   235
40
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   236
Eg 5:
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   237
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   238
::
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   239
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   240
  In [4]: a = 6
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   241
  
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   242
  In [5]: a.
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   243
  a.__abs__           a.__divmod__        a.__index__         a.__neg__          a.__rand__          a.__rmod__          a.__rxor__
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   244
  a.__add__           a.__doc__           a.__init__          a.__new__          a.__rdiv__          a.__rmul__          a.__setattr__
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   245
  a.__and__           a.__float__         a.__int__           a.__nonzero__      a.__rdivmod__       a.__ror__           a.__str__
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   246
  a.__class__         a.__floordiv__      a.__invert__        a.__oct__          a.__reduce__        a.__rpow__          a.__sub__
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   247
  a.__cmp__           a.__getattribute__  a.__long__          a.__or__           a.__reduce_ex__     a.__rrshift__       a.__truediv__
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   248
  a.__coerce__        a.__getnewargs__    a.__lshift__        a.__pos__          a.__repr__          a.__rshift__        a.__xor__
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   249
  a.__delattr__       a.__hash__          a.__mod__           a.__pow__          a.__rfloordiv__     a.__rsub__          
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   250
  a.__div__           a.__hex__           a.__mul__           a.__radd__         a.__rlshift__       a.__rtruediv__      
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   251
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   252
In this example, we initialized 'a' (a variable - a concept that will be
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   253
discussed in the subsequent sections.) to 6. In the next line when the *tab* key
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   254
is pressed after typing '*a.*' ipython displays the set of all possible methods
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   255
that are applicable on the object 'a' (an integer in this context). Ipython
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   256
provides many such datatype specific features which will be presented in the
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   257
further sections as and when the datatypes are introduced.
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   258
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   259
Editing and running a python file
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   260
=================================
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   261
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   262
The previous sections focused on the use of the interpreter to run python code.
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   263
While the interpeter is an excellent tool to test simple solutions and
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   264
experiment with small code snippets, its main disadvantage is that everything
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   265
written in the interpreter is lost once its quit. Most of the times a program is 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   266
used by people other than the author. So the programs have to be available in 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   267
some form suitable for distribution, and hence they are written in files. This 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   268
section will focus on editing and running python files. Start by opening a text 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   269
editor ( it is recommended you choose one from the list at the top of this page ).
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   270
In the editor type down python code and save the file with an extension **.py** 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   271
(python files have an extension of .py). Once done with the editing, save the 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   272
file and exit the editor. 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   273
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   274
Let us look at a simple example of calculating the gcd of 2 numbers using Python:
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   275
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   276
**Creating the first python script(file)**
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   277
::
34
7a243a6d8625 Added interpreter examples and the ipython section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 33
diff changeset
   278
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   279
  $ emacs gcd.py
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   280
    def gcd(x,y):
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   281
      if x % y == 0:
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   282
        return y
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   283
      return gcd(y, x%y)
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   284
  
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   285
    print gcd(72, 92)
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   286
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   287
To run the script, open the shell prompt, navigate to the directory that 
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   288
contains the python file and run ``python <filename.py>`` at the prompt ( in this 
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   289
case filename is gcd.py )
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   290
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   291
**Running the python script**
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   292
::
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   293
  
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   294
  $ python gcd.py
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   295
  4
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   296
  $ 
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   297
40
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   298
Another method to run a python script would be to include the line
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   299
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   300
``#! /usr/bin/python``
40
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   301
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   302
at the beginning of the python file and then make the file executable by 
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   303
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   304
$ chmod a+x *filename.py*
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   305
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   306
Once this is done, the script can be run as a standalone program as follows:
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   307
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   308
$ ./*filename.py*
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   309
39
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   310
Basic Datatypes and operators in Python
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   311
=======================================
932a7a863120 Added Editing and running a python file section
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 34
diff changeset
   312
40
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   313
Python provides the following set of basic datatypes.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   314
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   315
  * Numbers: int, float, long, complex
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   316
  * Strings
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   317
  * Boolean
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   318
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   319
Numbers
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   320
~~~~~~~
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   321
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   322
Numbers were introduced in the examples presented in the interactive interpreter
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   323
section. Numbers include types as mentioned earlier viz., int (integers), float 
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   324
(floating point numbers), long (large integers), complex (complex numbers with 
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   325
real and imaginary parts). Python is not a strongly typed language, which means 
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   326
the type of a variable need not mentioned during its initialization. Let us look
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   327
at a few examples.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   328
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   329
Eg 6:
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   330
::
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   331
  
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   332
  >>> a = 1 #here a is an integer variable
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   333
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   334
Eg 7:
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   335
::
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   336
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   337
  >>> lng = 122333444455555666666777777788888888999999999 #here lng is a variable of type long
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   338
  >>> lng
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   339
  122333444455555666666777777788888888999999999L #notice the trailing 'L'
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   340
  >>> print lng
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   341
  122333444455555666666777777788888888999999999 #notice the absence of the trailing 'L'
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   342
  >>> lng+1
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   343
  122333444455555666666777777788888889000000000L
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   344
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   345
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   346
Long numbers are the same as integers in almost all aspects. They can be used in
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   347
operations just like integers and along with integers without any distinction.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   348
The only distinction comes during type checking (which is not a healthy practice).
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   349
Long numbers are tucked with a trailing 'L' just to signify that they are long.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   350
Notice that in the example just lng at the prompt displays the value of the variable
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   351
with the 'L' whereas ``print lng`` displays without the 'L'. This is because print 
40
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   352
formats the output before printing. Also in the example, notice that adding an 
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   353
integer to a long does not give any errors and the result is as expected. So for
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   354
all practical purposes longs can be treated as ints.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   355
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   356
Eg 8:
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   357
::
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   358
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   359
  >>> fl = 3.14159 #fl is a float variable
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   360
  >>> e = 1.234e-4 #e is also a float variable, specified in the exponential form
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   361
  >>> a = 1
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   362
  >>> b = 2
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   363
  >>> a/b #integer division
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   364
  0
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   365
  >>> a/fl #floating point division
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   366
  0.31831015504887655
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   367
  >>> e/fl
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   368
  3.9279473133031364e-05
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   369
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   370
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   371
Floating point numbers, simply called floats are real numbers with a decimal point.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   372
The example above shows the initialization of a float variable. Shown also in this
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   373
example is the difference between integer division and floating point division.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   374
'a' and 'b' here are integer variables and hence the division gives 0 as the quotient.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   375
When either of the operands is a float, the operation is a floating point division,
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   376
and the result is also a float as illustrated.
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   377
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   378
Eg 9:
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   379
::
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   380
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   381
  >>> cplx = 3 + 4j #cplx is a complex variable
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   382
  >>> cplx
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   383
  (3+4j)
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   384
  >>> print cplx.real #prints the real part of the complex number
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   385
  3.0
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   386
  >>> print cplx.imag #prints the imaginary part of the complex number
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   387
  4.0
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   388
  >>> print cplx*fl  #multiplies the real and imag parts of the complex number with the multiplier
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   389
  (9.42477+12.56636j)
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   390
  >>> abs(cplx) #returns the absolute value of the complex number
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   391
  5.0
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   392
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   393
Python provides a datatype for complex numbers. Complex numbers are initialized 
ccdbbc094579 Added content of basic datatypes.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 39
diff changeset
   394
as shown in the example above. The *real* and *imag* operators return the real and
41
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   395
imaginary parts of the complex number as shown. The *abs()* returns the absolute
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   396
value of the complex number.
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   397
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   398
Variables
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   399
~~~~~~~~~
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   400
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   401
Variables are just names that represent a value. Variables have already been 
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   402
introduced in the various examples from the previous sections. Certain rules about
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   403
using variables:
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   404
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   405
  * Variables have to be initialized or assigned a value before being used.
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   406
  * Variable names can consist of letters, digits and underscores(_).
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   407
  * Variable names cannot begin with digits, but can contain digits in them.
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   408
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   409
In reference to the previous section examples, 'a', 'b', 'lng', 'fl', 'e' and 'cplx'
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   410
are all variables of various datatypes.
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   411
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   412
::
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   413
  
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   414
  Note: Python is not a strongly typed language and hence an integer variable can at a
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   415
  later stage be used as a float variable as well.
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   416
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   417
Strings
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   418
~~~~~~~
b81255d096ab Added Variables section.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 40
diff changeset
   419
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   420
Strings are one of the essential data structures of any programming language.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   421
The ``print "Hello, World!"`` program was introduced in the earlier section, and
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   422
the *"Hello, World!"* in the print statement is a string. A string is basically 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   423
a set of characters. Strings can be represented in various ways shown below:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   424
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   425
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   426
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   427
  s = 'this is a string'              # a string variable can be represented using single quotes
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   428
  s = 'This one has "quotes" inside!' # The string can have quotes inside it as shown
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   429
  s = "I have 'single-quotes' inside!"
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   430
  l = "A string spanning many lines\
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   431
  one more line\
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   432
  yet another"                        # a string can span more than a single line.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   433
  t = """A triple quoted string does  # another way of representing multiline strings.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   434
  not need to be escaped at the end and
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   435
  "can have nested quotes" etc."""
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   436
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   437
Try the following on the interpreter:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   438
``s = 'this is a string with 'quotes' of similar kind'``
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   439
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   440
**Exercise: How to use single quotes within single quotes in a string as shown 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   441
in the above example without getting an error?**
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   442
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   443
String operations
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   444
-----------------
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   445
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   446
A few basic string operations are presented here. 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   447
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   448
**String concatenation**
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   449
String concatenation is done by simple addition of two strings.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   450
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   451
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   452
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   453
  >>> x = 'Hello'
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   454
  >>> y = ' Python'
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   455
  >>> print x+y
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   456
  Hello Python
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   457
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   458
*Try this yourself:*
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   459
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   460
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   461
  
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   462
  >>> somenum = 13
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   463
  >>> print x+somenum
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   464
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   465
The problem with the above example is that here a string variable and an integer
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   466
variable are trying to be concantenated. To obtain the desired result from the 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   467
above example the str(), repr() and the `` can be used.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   468
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   469
**str()** simply converts a value to a string in a reasonable form.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   470
**repr()** creates a string that is a representation of the value.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   471
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   472
The difference can be seen in the example shown below:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   473
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   474
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   475
  
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   476
  >>> str(1000000000000000000000000000000000000000000000000L)
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   477
  '1000000000000000000000000000000000000000000000000'
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   478
  >>> repr(1000000000000000000000000000000000000000000000000L)
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   479
  '1000000000000000000000000000000000000000000000000L'
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   480
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   481
It can be observed that the 'L' in the long value shown was omitted by str(), 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   482
whereas repr() converted that into a string too. An alternative way of using 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   483
repr(value) is ```value```. 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   484
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   485
A few more examples:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   486
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   487
  
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   488
  >>> x = "Let's go \nto Pycon"
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   489
  >>> print x
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   490
  Let's go 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   491
  to Pycon
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   492
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   493
In the above example, notice that the '\n'(newline) character is formatted and 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   494
the string is printed on two lines. The strings discussed until now were normal 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   495
strings. Other than these there are two other types of strings namely, raw strings
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   496
and unicode strings.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   497
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   498
**Raw strings** are strings which are unformatted, that is the backslashes(\) are 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   499
not parsed and are left as it is in the string. Raw strings are represented with
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   500
an 'r' at the start of a string. 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   501
Let us look at an example
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   502
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   503
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   504
  
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   505
  >>> x = r"Let's go \nto Pycon"
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   506
  >>> print x
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   507
  Let's go \nto Pycon
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   508
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   509
Note: The '\n' is not being parsed into a new line and is left as it is.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   510
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   511
*Try this yourself:*
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   512
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   513
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   514
  
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   515
  >>> x = r"Let's go to Pycon\"
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   516
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   517
**Unicode strings** are strings where the characters are Unicode characters as 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   518
opposed to ASCII characters. Unicode strings are represented with a 'u' at the 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   519
start of the string.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   520
Let us look at an example:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   521
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   522
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   523
  
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   524
  >>> x = u"Let's go to Pycon!"
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   525
  >>> print x
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   526
  Let's go to Pycon!
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   527
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   528
Boolean
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   529
~~~~~~~
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   530
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   531
Python also provides special Boolean datatype. A boolean variable can assume a 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   532
value of either *True* or *False* (Note the capitalizations). 
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   533
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   534
Let us look at examples:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   535
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   536
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   537
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   538
  >>> t = True
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   539
  >>> f = not t
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   540
  >>> print f
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   541
  False
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   542
  >>> f or t
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   543
  True
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   544
  >>> f and t
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   545
  False
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   546
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   547
The **while** loop
65
0f25f22a2725 Added the strings_dict.rst file.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 52
diff changeset
   548
==================
0f25f22a2725 Added the strings_dict.rst file.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 52
diff changeset
   549
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   550
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   551
The Python **while** loop is similar to the C/C++ while loop. The syntax is as
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   552
follows:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   553
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   554
::
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   555
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   556
  statement 0
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   557
  while condition:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   558
    statement 1 #while block
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   559
    statement 2 #while block
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   560
  statement 3 #outside the while block.
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   561
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   562
Let us look at an example:
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   563
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   564
::
50
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   565
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   566
    >>> x = 1  
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   567
    >>> while x <= 5:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   568
    ...   print x
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   569
    ...   x += 1
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   570
    ... 
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   571
    1
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   572
    2
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   573
    3
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   574
    4
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   575
    5
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   576
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   577
The **if** conditional
65
0f25f22a2725 Added the strings_dict.rst file.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 52
diff changeset
   578
======================
50
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   579
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   580
The Python **if** block provides the conditional execution of statements. 
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   581
If the condition evaluates as true the block of statements defined under the if 
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   582
block are executed.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   583
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   584
If the first block is not executed on account of the condition not being satisfied,
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   585
the set of statements in the **else** block are executed.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   586
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   587
The **elif** block provides the functionality of evaluation of multiple conditions
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   588
as shown in the example.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   589
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   590
The syntax is as follows:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   591
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   592
::
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   593
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   594
  if condition :
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   595
      statement_1
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   596
      statement_2
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   597
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   598
  elif condition:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   599
      statement_3
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   600
      statement_4
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   601
  else:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   602
      statement_5
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   603
      statement_6
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   604
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   605
Let us look at an example:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   606
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   607
::
49
5b5c728cd47f Added Strings and Boolean sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 41
diff changeset
   608
  
50
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   609
   >>> n = raw_input("Input a number:")
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   610
   >>> if n < 0:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   611
         print n," is negative"
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   612
         elif n > 0:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   613
         print n," is positive"
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   614
         else:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   615
         print n, " is 0"
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   616
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   617
**raw_input()**
65
0f25f22a2725 Added the strings_dict.rst file.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 52
diff changeset
   618
===============
50
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   619
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   620
In the previous example we saw the call to the raw_input() subroutine. 
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   621
The **raw_input()** method is used to take user inputs through the console.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   622
Unlike **input()** which assumes the data entered by the user as a standard python
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   623
expression, **raw_input()** treats all the input data as raw data and converts
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   624
everything into a string. To illustrate this let us look at an example.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   625
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   626
::
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   627
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   628
  >>> input("Enter a number thats a palindrome:")
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   629
  Enter a number thats a palindrome:121
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   630
  121
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   631
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   632
  >>> input("Enter your name:")
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   633
  Enter your name:PythonFreak
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   634
  Traceback (most recent call last):
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   635
    File "<stdin>", line 1, in <module>
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   636
    File "<string>", line 1, in <module>
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   637
  NameError: name 'PythonFreak' is not defined
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   638
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   639
As shown above the **input()** assumes that the data entered is a valid Python
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   640
expression. In the first call it prompts for an integer input and when entered
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   641
it accepts the integer as an integer, whereas in the second call, when the string
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   642
is entered without the quotes, **input()** assumes that the entered data is a valid
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   643
Python expression and hence it raises and exception saying PythonFreak is not 
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   644
defined.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   645
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   646
::
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   647
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   648
  >>> input("Enter your name:")
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   649
  Enter your name:'PythonFreak'
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   650
  'PythonFreak'
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   651
  >>> 
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   652
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   653
Here the name is accepted because its entered as a string (within quotes). But
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   654
its unreasonable to go on using quotes each time a string is entered. Hence the
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   655
alternative is to use **raw_input()**.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   656
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   657
Let us now look at how **raw_input()** operates with an example.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   658
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   659
::
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   660
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   661
  >>> raw_input("Enter your name:")
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   662
  Enter your name:PythonFreak
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   663
  'PythonFreak'
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   664
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   665
Observe that the **raw_input()** is converting it into a string all by itself.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   666
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   667
::
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   668
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   669
  >>> pal = raw_input("Enter a number thats a palindrome:")
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   670
  Enter a number thats a palindrome:121
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   671
  '121'
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   672
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   673
Observe that **raw_input()** is converting the integer 121 also to a string as 
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   674
'121'. Let us look at another example:
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   675
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   676
::
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   677
  
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   678
  >>> pal = raw_input("Enter a number thats a palindrome:")
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   679
  Enter a number thats a palindrome:121
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   680
  >>> pal + 2
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   681
  Traceback (most recent call last):
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   682
    File "<stdin>", line 1, in <module>
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   683
  TypeError: cannot concatenate 'str' and 'int' objects
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   684
  >>> pal
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   685
  '121'
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   686
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   687
Observe here that the variable *pal* is a string and hence integer operations
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   688
cannot be performed on it. Hence the exception is raised.
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   689
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   690
**int()** method
65
0f25f22a2725 Added the strings_dict.rst file.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 52
diff changeset
   691
================
50
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   692
52
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   693
Generally for computing purposes, the data used is not strings or raw data but 
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   694
on integers, floats and similar mathematical data structures. The data obtained
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   695
from **raw_input()** is raw data in the form of strings. In order to obtain integers
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   696
from strings we use the method **int()**. 
50
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   697
0985027f4c8c Added while loop, if conditional, raw_input() sections.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 49
diff changeset
   698
Let us look at an example.
52
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   699
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   700
::
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   701
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   702
  >>> intpal = int(pal)
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   703
  >>> intpal
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   704
  121
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   705
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   706
In the previous example it was observed that *pal* was a string variable. Here
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   707
using the **int()** method the string *pal* was converted to an integer variable.
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   708
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   709
*Try This Yourself:*
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   710
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   711
::
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   712
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   713
  >>> stringvar = raw_input("Enter a name:")
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   714
  Enter a name:Guido Van Rossum
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   715
  >>> stringvar
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   716
  'Guido Van Rossum'
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   717
  >>> numvar = int(stringvar)
9748190df418 Completed intro.rst. Review pending.
Santosh G. Vattam <vattam.santosh@gmail.com>
parents: 50
diff changeset
   718