gpt4 book ai didi

python - 使用 2 个参数制作字符串列表。 Python 3.3

转载 作者:太空宇宙 更新时间:2023-11-04 07:40:19 26 4
gpt4 key购买 nike

假设我从文件中读取了一个句子:

hello what is your name
my name is david

我正在尝试从中创建一个字符串列表,它看起来像:

['hello','what','is','your','name','my','name','is','david']

主要问题是当我使用拆分选项时,我只能指定一个参数来拆分字符串。

我最终选择了其中之一

['hello what is your name','my name is david']

按'\n'分割时

['hello','what','is','your','name\n','my','name','is','david\n']

按“空格键”分割时。

有没有一种方法可以组合这两个参数来生成这两个以上的字符串列表?

谢谢。

最佳答案

只需使用 text.split(),它会按空格、制表符和换行符拆分字符串。

text = """hello what is your name
my name is david"""
print text.split()

#output: ['hello', 'what', 'is', 'your', 'name', 'my', 'name', 'is', 'david']

关于python - 使用 2 个参数制作字符串列表。 Python 3.3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23149028/

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