Answers for "python strip all string in list"

0

how to strip a list in python

list1 = ["a  ", "  b ", " c"]

[i.strip() for i in list1] # ['a', 'b', 'c']
Posted by: Guest on August-23-2020

Code answers related to "python strip all string in list"

Python Answers by Framework

Browse Popular Code Answers by Language