美文网首页
python 去除列表中的\n 和空字符

python 去除列表中的\n 和空字符

作者: 戒灵 | 来源:发表于2019-01-18 16:32 被阅读0次

    转自:https://blog.csdn.net/thindi/article/details/83963267

    s=['\n', 'magnet:?xt=urn:btih:060C0CE5CFAE29A48102280B88943880689859FC\n']
    
    

    上面是目标代码,一个列表,中间有\n,我们现在将其去掉

    s=[x.strip() for x in magnet_link]
    

    运行会发现结果为

    s=['', 'magnet:?xt=urn:btih:060C0CE5CFAE29A48102280B88943880689859FC']
    

    离我们的要求越来越近了

    s=[x.strip() for x in magnet_link if x.strip()!='']
    

    好了,结果出来了

    s=['magnet:?xt=urn:btih:060C0CE5CFAE29A48102280B88943880689859FC']
    

    相关文章

      网友评论

          本文标题:python 去除列表中的\n 和空字符

          本文链接:https://www.haomeiwen.com/subject/qywndqtx.html