Linux에서 python 2.7의 모든 공백 / 탭 / 줄 바꿈을 제거하려고합니다.
나는 이것을 썼다.
myString="I want to Remove all white \t spaces, new lines \n and tabs \t"
myString = myString.strip(' \n\t')
print myString
산출:
I want to Remove all white spaces, new lines
and tabs
간단한 일처럼 보이지만 여기에 뭔가 빠졌습니다. 뭔가를 가져와야하나요?