相关疑难解决方法(0)

如何将字符串拆分为列表?

我希望我的Python函数分割一个句子(输入)并将每个单词存储在一个列表中.我当前的代码拆分了句子,但没有将单词存储为列表.我怎么做?

def split_line(text):

    # split the text
    words = text.split()

    # for each word in the line:
    for word in words:

        # print the word
        print(words)
Run Code Online (Sandbox Code Playgroud)

python split list text-segmentation

545
推荐指数
8
解决办法
170万
查看次数

在Python中拆分整数?

我的整数输入是假设12345,我想拆分并将其放入数组中1, 2, 3, 4, 5.我怎么能这样做?

python

58
推荐指数
4
解决办法
17万
查看次数

标签 统计

python ×2

list ×1

split ×1

text-segmentation ×1