functions.org
changeset 113 6388eacf7502
parent 110 c1099ad60539
child 118 2f247bcfae8b
--- a/functions.org	Mon Apr 26 18:12:39 2010 +0530
+++ b/functions.org	Tue Apr 27 14:37:48 2010 +0530
@@ -48,7 +48,8 @@
     Let us add a simple doc string to our welcome function. 
 
         def welcome(name):
-	    """ Prints a hello message to a person, given a name. """
+	    """ Prints a hello message to a person,
+	        given a name. """
 	    print "Hello", name 
     
     Notice that the doc string uses triple quotes. If the doc-string
@@ -58,7 +59,7 @@
 
     We shall now look at default arguments. 
     [show slide with examples of functions with default arguments]
-    The strip function has been used in two different ways in the
+    The split function has been used in two different ways in the
     previous tutorials - one for splitting on spaces and the other for
     splitting on commas.