我有一个包含一组混合值的python数组,看起来有点像下面的例子:
['0012 ', ' 318422 ', ' www.example.com']
我的问题是,如何从数组中的值中轻松删除前导和尾随空格,使其如下所示:
['0012', '318422', 'www.example.com']
答案 0 :(得分:3)
喜欢这样
[x.strip() for x in mylist]
答案 1 :(得分:0)
您可以使用map
和strip
:
a = ['0012 ', ' 318422 ', ' www.example.com']
clean_a = map(lambda x: x.strip(), a)