我有一些列表如下:
['apple,orange,cherry', 'tomato,potato,cucumber', 'pear,grape, kiwi']
['fish,chicken,beef', 'milk,juice,tea', 'Facebook,twitter,instagram']
...
我想在列表中拆分字符串,如下所示:
[['apple', 'orange', 'cherry'], [...], [...]]
...
我尝试了split
,但它没有用。
答案 0 :(得分:6)
您可能只需要将分割字符(即,
)传递给split
。默认情况下,它只在空格上分割。
a = ['apple,orange,cherry', 'tomato,potato,cucumber', 'pear,grape, kiwi']
b = [s.split(',') for s in a]