下列哪个选项可以将字符串 "hello" 转换为列表 ['h', 'e', 'l', 'l', 'o'] ?( )
list("hello")
"hello".split()
"hello".to_list()
["hello"]