how to strip from a list of strings in python code example
Example 1: how to strip a list in python
list1 = ["a ", " b ", " c"]
[i.strip() for i in list1] # ['a', 'b', 'c']
Example 2: strip array of strings python
map(lambda x: x.strip(), l)
list1 = ["a ", " b ", " c"]
[i.strip() for i in list1] # ['a', 'b', 'c']
map(lambda x: x.strip(), l)