Q. What is the output of `print(list('abc'))`? (A) ['abc'] (B) ['a', 'b', 'c'] (C) ['a', 'abc'] (D) Error ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) ['a', 'b', 'c'] Explanation: `list('abc')` splits the string into a list of characters.