Python去除列表中元素的前后空格和换行

Python去除列表中元素的前后空格和换行

一行代码搞定:

p = [x.strip() for x in square if x.strip() != '']	
#square是列表

你可能感兴趣的:(Python,爬虫)