我的列表如下所示:
foo = ["neg * , This is a sentence","pos * , This is another sentence"]
我需要以这样一种方式拆分句子,使一个值成为类别,neg
或pos
,一个成为句子。我试过:
for text in foo:
text = text.split("*")
for a,b in text:
cat=a
text=b
但是我得到一个“太多的价值来解压”,有人知道吗?