gpt4 book ai didi

python - 有没有更好的方法在字符串列表上使用 strip() ? - Python

转载 作者:行者123 更新时间:2023-12-03 03:43:05 25 4
gpt4 key购买 nike

现在我一直在尝试对字符串列表执行 strip(),我这样做了:

i = 0
for j in alist:
alist[i] = j.strip()
i+=1

有更好的方法吗?

最佳答案

您可能不应该使用 list 作为变量名,因为它是一种类型。无论如何:

list = map(str.strip, list) 

这会将函数 str.strip 应用于 list 中的每个元素,返回一个新列表,并将结果存储回 list .

关于python - 有没有更好的方法在字符串列表上使用 strip() ? - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12182777/

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