标签: python python-3.x pandas
DF:
Pattern Count a 2 a,b 3
预期产出:
l1 = [['a'],['a','b']]
对熊猫来说可能很傻但很新,所以道歉。有没有办法做到这一点?
答案 0 :(得分:0)
您可以使用str.split和tolist:
str.split
tolist
print df.Pattern.str.split(',').tolist() [['a'], ['a', 'b']]