gpt4 book ai didi

python - 如何通过拆分 python 中的列表元素来创建列表?

转载 作者:太空宇宙 更新时间:2023-11-03 12:27:57 26 4
gpt4 key购买 nike

假设我有:

sentences = ['The girls are gorgeous', 'I'm mexican']

我想获得:

words = ['The','girls','are','gorgeous', 'I'm', 'mexican']

我试过:

words = [w.split(' ') for w in sentences] 

但没有得到预期的结果。

这对 Counter(words) 有用吗,因为我需要获取频率?

最佳答案

这样试试

sentences = ["The girls are gorgeous", "I'm mexican"]
words = [word for sentence in sentences for word in sentence.split(' ')]

关于python - 如何通过拆分 python 中的列表元素来创建列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22954253/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com