CBSE Class 12 Computer Science
Question 31 of 120
Review of Python Basics — Question 5
Back to all questionslist(tuple)
Reason — In Python, the list() constructor function is used to convert iterable objects, such as tuples, into lists. The syntax list(tuple) means that we are passing a tuple as an argument to the list() function, which then creates a new list containing the elements of the tuple.