--- 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
----------------