关于以下代码,哪些说法正确?
s = 'apple,banana,orange'; fruits = s.split(',')
fruits的值为['apple','banana','orange']
fruits[0]是'apple'
len(fruits)是3
s.split()得到空列表