지정된 문자열의 끝을 삭제하는 함수이다.
default는 공백이다.
str1 = "Hi, Nice to meet you. "
print(str1.rstrip())
str2 = " Hi, Nice to meet you.asdf"
print(str2.rstrip(asdf))
Hi, Nice to meet you. # 오른쪽 space 칸들 사라짐
Hi, Nice to meet you. #오른쪽 "asdf" 문자
지정된 문자열의 왼쪽을 삭제하는 함수이다.
dafault는 공백이다.
str1 = " hello"
print(str1.lstrip())
str1 = "asdfhello"
print(str1.lstrip(asdf))
hello #왼쪽 공백 지워짐
hello #왼쪽 asdf 지워짐
지정된 문자열의 왼쪽끝과 오른쪽 끝을 삭제하는 함수
default는 공백이다.
str1 = " hello "
print(str1)
hello