reviewed questions
authorNishanth <nishanth@fossee.in>
Sun, 10 Oct 2010 15:55:05 +0530
changeset 294 64d8bc8b33d4
parent 293 ca701f1ef7fb
child 295 c924eaf1b355
reviewed questions
manipulating-strings/questions.rst
--- a/manipulating-strings/questions.rst	Sun Oct 10 15:49:44 2010 +0530
+++ b/manipulating-strings/questions.rst	Sun Oct 10 15:55:05 2010 +0530
@@ -47,11 +47,11 @@
 #. Given a line from a CSV file (comma separated values), convert it
    to a space separated line. 
 
-   Answer: line.replace(',' ' ')
+   Answer: line.replace(',', ' ')
 
-#. Given the string "F.R.I.E.N.D.S" in s, obtain the friends. 
+#. Given the string "F.R.I.E.N.D.S" in s, obtain the "friends".
 
-   Answer: ``s[::2].lower()
+   Answer: ``s[::2].lower()``
 
 Larger Questions
 ----------------