

InterviewSolution
Saved Bookmarks
1. |
Which of the following is a Python tuple?(a) [1, 2, 3](b) (1, 2, 3)(c) {1, 2, 3}(d) {} |
Answer» Correct option is (b) (1, 2, 3) Easy explanation - Tuples are represented with round brackets. |
|