A. ['llo']
B. ['hello']
C. ['h', 'e', l', 'l', 'o'] ['h', 'e', 'l', 'l', 'o']
D. None of the above इनमें से कोई नहीं
Correct Answer is :
C. ['h', 'e', l', 'l', 'o']
Explanation
The list() function converts an iterable into a list.
A string is an iterable where each character is an element.
So list("hello") breaks the string into a list of its characters