

InterviewSolution
Saved Bookmarks
1. |
Which of the following commands will create a list?(a) list1 = list()(b) list1 = [](c) list1 = list([1, 2, 3])(d) all of the mentioned |
Answer» Right choice is (d) all of the mentioned Easy explanation - Execute in the shell to verify |
|