쉼표로 분할되지만 공백을 제거하지 않는 파이썬 코드가 있습니다.
>>> string = "blah, lots , of , spaces, here "
>>> mylist = string.split(',')
>>> print mylist
['blah', ' lots ', ' of ', ' spaces', ' here ']
오히려 다음과 같이 공백이 제거됩니다.
['blah', 'lots', 'of', 'spaces', 'here']
나는 목록을 반복하고 각 항목을 strip () 할 수 있다는 것을 알고 있지만 이것이 파이썬이기 때문에 더 빠르고 쉽고 우아한 방법이 있다고 생각합니다.