728x90
반응형
Strip
-
Python String strip(), rstrip(), lstrip()Python/etc 2022. 10. 11. 14:59
목차 Strip() 이 strip() 메소드는 문자열의 시작과 끝에서 공백을 제거합니다. txt = " orange " x = txt.strip() print("This", x, "is delicious") Result rstrip() 이 rstrip() 메소드는 문자열 끝에 있는 공백을 제거합니다. txt = " orange " x = txt.rstrip() print("This", x, "is delicious") Result lstrip() 이 lstrip() 메소드는 문자열 왼쪽에 있는 공백을 제거합니다. txt = " orange " x = txt.lstrip() print("This", x, "is delicious") Result