Python替换掉列表的\n 和空格

test = ['', 'ttt\n          ', "123"]
test = [x.strip() for x in test if x.strip() != '']
print(test)

 

posted @ 2021-04-28 21:09  只是条咸鱼罢了  阅读(381)  评论(0编辑  收藏  举报