input_output/script.rst.orig
author bhanu
Thu, 11 Nov 2010 00:22:53 +0530
changeset 473 7eaa550929a1
parent 418 8a42b4203f6d
permissions -rw-r--r--
Language check Done for `getting started with for loop`
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
418
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     1
.. Objectives
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     2
.. ----------
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     3
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     4
.. #. How to print some value
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     5
.. #. How to print using modifiers
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     6
.. #. How to take input from user
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     7
.. #. How to display a prompt to the user before taking the input
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     8
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
     9
.. Prerequisites
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    10
.. -------------
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    11
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    12
..   1. Loops
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    13
     
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    14
.. Author              : Nishanth Amuluru
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    15
   Internal Reviewer   : Puneeth 
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    16
   External Reviewer   :
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    17
   Checklist OK?       : <put date stamp here, if OK> [2010-10-05]
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    18
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    19
Script
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    20
------
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    21
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    22
Hello friends and welcome to this tutorial on Input/Output
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    23
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    24
{{{ Show the slide containing title }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    25
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    26
{{{ Show the slide containing the outline slide }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    27
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    28
Input and Output are used in almost every program we use.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    29
In this tutorial, we shall learn how to 
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    30
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    31
 * Output data
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    32
 * Take input from the user
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    33
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    34
type
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    35
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    36
 
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    37
    a = "This is a string"
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    38
    a
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    39
    print a
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    40
     
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    41
<<<<<<< local
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    42
print a, prints the value of a.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    43
=======
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    44
``print a``, obviously, is printing the value of ``a``.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    45
>>>>>>> other
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    46
As you can see, even when you type just a, the value of a is shown.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    47
But there is a difference.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    48
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    49
.. #[Amit: The next sentence does seem to be clear enough]
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    50
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    51
Typing a shows the value of a while print a prints the string. This difference
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    52
becomes more evident when we use strings with newlines in them.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    53
type
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    54
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    55
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    56
    b = "A line \n New line"
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    57
    b
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    58
    print b
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    59
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    60
As you can see, just typing b shows that b contains a newline character.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    61
While typing print b prints the string and hence the newline.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    62
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    63
Moreover when we type just a, the value a is shown only in interactive mode and
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    64
does not have any effect on the program while running it as a script.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    65
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    66
.. #[punch: I think we could show that?]
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    67
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    68
We shall look at different ways of outputting the data.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    69
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    70
<<<<<<< local
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    71
.. #[Amit: C's printf syntax ?? i think its better to elaborate the
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    72
   idea]
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    73
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    74
print statement  in python supports string formatting.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    75
Various arguments can be passed to print using modifiers.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    76
=======
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    77
``print`` statement also accepts the syntax of C's ``printf`` statement.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    78
Various arguments can be passed to ``print`` using modifiers.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    79
>>>>>>> other
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    80
type
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    81
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    82
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    83
    x = 1.5
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    84
    y = 2
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    85
    z = "zed"
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    86
    print "x is %2.1f y is %d z is %s"%(x,y)
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    87
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    88
As you can see, the values of x and y are substituted in place of
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    89
``%2.1f`` and ``%d`` 
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    90
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    91
{{{ Pause here and try out the following exercises }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    92
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    93
%% 1 %% What happens when you do ``print "x is %d y is %f" %(x, y)``
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    94
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    95
{{{ continue from paused state }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    96
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    97
We see that the ``int`` value of x and ``float`` value of y are
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    98
printed corresponding to the modifiers used in the print statement.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
    99
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   100
We can also see that ``print`` statement prints a new line character
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   101
at the end of the line, everytime it is called. This can be suppressed
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   102
by using a "," at the end ``print`` statement.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   103
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   104
Let us see this by typing out following code on an editor as print_example.py
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   105
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   106
{{{ open an editor }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   107
type
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   108
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   109
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   110
    print "Hello"
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   111
    print "World"
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   112
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   113
    print "Hello",
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   114
    print "World"
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   115
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   116
Now we run the script using %run /home/fossee/print_example.py
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   117
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   118
As we can see, the print statement when used with comma in the end, prints a
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   119
space instead of a new line.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   120
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   121
Now we shall look at taking input from the user.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   122
We will use the ~~raw_input~~ for this.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   123
type
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   124
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   125
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   126
    ip = raw_input()
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   127
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   128
The cursor is blinking indicating that it is waiting for input    
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   129
type
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   130
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   131
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   132
    an input
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   133
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   134
and hit enter.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   135
Now let us see what is the value of ip by typing.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   136
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   137
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   138
    ip
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   139
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   140
We can see that it contains the string "an input"
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   141
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   142
{{{ Pause here and try out the following exercises }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   143
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   144
%% 2 %% enter the number 5.6 as input and store it in a variable called c.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   145
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   146
{{{ continue from paused state }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   147
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   148
We have to use the raw_input command with variable c.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   149
type
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   150
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   151
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   152
    c = raw_input()
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   153
    5.6
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   154
    c
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   155
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   156
Now let us see the type of c.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   157
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   158
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   159
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   160
    type(c)
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   161
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   162
We see that c is a string. This implies that anything you enter as input, will
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   163
be taken as a string no matter what you enter.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   164
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   165
{{{ Pause here and try out the following exercises }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   166
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   167
%% 3 %% What happens when you do not enter anything and hit enter
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   168
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   169
{{{ continue from paused state }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   170
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   171
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   172
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   173
    d = raw_input()
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   174
    <RET>
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   175
    d
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   176
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   177
We see that when nothing is entered, an empty string is considered as input.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   178
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   179
raw_input also can display a prompt to assist the user.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   180
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   181
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   182
    name = raw_input("Please enter your name: ")
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   183
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   184
prints the string given as argument and then waits for the user input.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   185
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   186
{{{ Pause here and try out the following exercises }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   187
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   188
%% 4 %% How do you display a prompt and let the user enter input in next line
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   189
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   190
{{{ continue from paused state }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   191
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   192
.. #[Puneeth: We didn't talk of new-line character till now, did we?]
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   193
.. #[Puneeth: non-programmers might not know?]
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   194
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   195
.. #[Amit: Well there is a discussion earlier about new lines, I think its good
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   196
.. as a slight trick question. But may be next line is a more easier lexicon]
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   197
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   198
The trick is to include a newline character at the end of the prompt string.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   199
::
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   200
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   201
    ip = raw_input("Please enter a number in the next line\n> ")
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   202
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   203
prints the newline character and hence the user enters input in the next line
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   204
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   205
{{{ Show summary slide }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   206
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   207
This brings us to the end of the tutorial.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   208
In this totorial we have learnt
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   209
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   210
 * How to print some value
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   211
 * How to print using modifiers
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   212
 * How to take input from user
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   213
 * How to display a prompt to the user before taking the input
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   214
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   215
{{{ Show the "sponsored by FOSSEE" slide }}}
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   216
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   217
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   218
This tutorial was created as a part of FOSSEE project, NME ICT, MHRD India
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   219
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   220
Hope you have enjoyed and found it useful.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   221
Thank You.
8a42b4203f6d "Merging heads"
Amit Sethi
parents:
diff changeset
   222