gpt4 book ai didi

python - 列表理解提示

转载 作者:太空宇宙 更新时间:2023-11-04 01:02:17 24 4
gpt4 key购买 nike

有没有更优雅的写法?:

q = []
for line in lines:
date = line.split(",", 1)
q.append(date[0])

我正在尝试理解列表理解。

任何帮助将不胜感激

最佳答案

q = [line.split(",", 1)[0] for line in lines]

关于python - 列表理解提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32290060/

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