[Python] 구분자 구분

Sireal·2021년 11월 11일
0

Python

목록 보기
9/14
post-thumbnail

split

  • 구분자 구분
    my_string = "1. 2. 3. 4. 5. 6"
    print(my_string.split("."))

strip

  • 화이트 스페이스 제거
    ## strip (인자로 전달된 문자를 String의 왼쪽과 오른쪽에서 제거)
    print("      abc     def      ".strip())
    ## lstrip ( 왼쪽 제거 )
    print("      abc     def      ".lstrip())
    ## rstrip ( 오른쪽 제거 )
    print("      abc     def      ".rstrip())

profile
🚄계속 앞으로🚄

0개의 댓글