tuples/questions.rst
changeset 457 68813d8d80fb
parent 425 c943cdbee397
--- a/tuples/questions.rst	Mon Nov 08 02:12:28 2010 +0530
+++ b/tuples/questions.rst	Thu Nov 11 02:28:55 2010 +0530
@@ -58,3 +58,10 @@
 
     Answer: (6, 5, 4, 3, 2, 1)
 
+ 10. What is the output of the code block below::
+
+       a = "hello", "bye", "welcome", "goodnight"
+       type(a)
+
+    Answer: <type 'tuple'>
+