InterviewSolution
Saved Bookmarks
| 1. |
Question 8: What is the output of the following program?T = 'geeks'a, b, c, d, e = Tb = c = '*'T = (a, b, c, d, e)print(T)(A) (‘g’, ‘*’, ‘*’, ‘k’, ‘s’)(B) (‘g’, ‘e’, ‘e’, ‘k’, ‘s’)(C) (‘geeks’, ‘*’, ‘*’)(D) KeyError |
| Answer» | |