gpt4 book ai didi

python - 如何拆分列表元素?

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

我必须从文件中读入二维列表。该文件看起来像:

Jack 32
Perry 12
Tim 14

等等

当我打印列表时,它看起来像:

['Jack 32', 'Perry 12', 'Tim 14']

但我需要它看起来像:

['Jack', '32', 'Perry', '12', 'Tim', '14']

到目前为止,我的代码如下所示:

with open('filelocation', 'r') as f:
content = f.readlines()
content = [x.strip('\n') for x in content]
print(content)

最佳答案

你不能只用空格分割整个文件吗?

>>> with open('filelocation') as f:
print(f.read().split())

['Jack', '32', 'Perry', '12', 'Tim', '14']

创建结构只是为了将其扁平化是没有意义的。

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

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