how to use strip in list 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 function in python
lol = ' lol '
print(lol)
# normal output = lol
lol = ' lol '
print(lol.strip())
# strip output = lol
# Cool right