ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Python String strip(), rstrip(), lstrip()
    Python/etc 2022. 10. 11. 14:59
    728x90
    반응형

    목차

      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

       

      반응형

      'Python > etc' 카테고리의 다른 글

      Python parquet 타입으로 읽기, 쓰기  (0) 2022.10.06
      Python tqdm이란?  (0) 2022.10.06

      댓글

    Designed by Tistory.