diff -r 10074d1357ff -r ed38dd9bdb50 SEESenv/web/html/ch5func.html --- a/SEESenv/web/html/ch5func.html Mon Feb 22 22:38:51 2010 +0530 +++ b/SEESenv/web/html/ch5func.html Tue Feb 23 19:43:04 2010 +0530 @@ -27,7 +27,7 @@
The above function can be called as. Note, the order of keyword parameters can @@ -681,7 +681,7 @@ def print_report(title, age, email, first, middle, last): print "Title: %s" % (title) print "Full name: %s %s %s" % (first, middle, last) - print "Age: %d\nEmail-ID: %s" % (age, email) + print "Age: %d nEmail-ID: %s" % (age, email) >>> args = (29, 'johny@example.com') >>> name = { @@ -701,7 +701,7 @@
However, the following is an example for nested functions in Python:
@@ -770,7 +758,7 @@