Comment dépouiller une liste dans Python

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

[i.strip() for i in list1] # ['a', 'b', 'c']
Shy Stag