Question 6: What is the output of the following program?
T = 'geeks' a, b, c, d, e = T b = c = '*' T = (a, b, c, d, e) print (T) |
(A) (‘g’, ‘*’, ‘*’, ‘k’, ‘s’)
(B) (‘g’, ‘e’, ‘e’, ‘k’, ‘s’)
(C) (‘geeks’, ‘*’, ‘*’)
(D) KeyError
Answer: (A)
Explanation: A tuple is created as T = (‘g’, ‘e’, ‘e’, ‘k’, ‘s’), then it is unpacked into a, b, c, d and e, mapping from ‘g’ to a and ‘s’ to e. b and c which are both ‘e’ are equal to ‘*’ and then the existing tuple is replaced by packing a, b, c, d and e into a tuple T.
Quiz of this Question
Please comment below if you find anything wrong in the above post
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.