산업 제조
산업용 사물 인터넷 | 산업자재 | 장비 유지 보수 및 수리 | 산업 프로그래밍 |
home  MfgRobots >> 산업 제조 >  >> Industrial programming >> python

EXAMPLE이 있는 Python String strip() 함수

파이썬 스트립()이란 무엇입니까?

파이썬 스트립() function은 Python 라이브러리에서 사용할 수 있는 내장 함수의 일부입니다. strip() 메서드는 원래 문자열의 시작과 끝에서 주어진 문자를 제거합니다. 기본적으로 strip() 함수는 문자열의 시작과 끝에서 공백을 제거하고 공백 없이 동일한 문자열을 반환합니다.

이 Python 자습서에서는 다음을 배우게 됩니다.

strip() 메소드의 구문

string.strip([characters])

매개변수

반환 가치

Python String strip()은 다음을 반환합니다.

파이썬에서 strip() 함수의 예

예제 1:Python의 strip() 메소드

str1 = "Welcome to Guru99!"
after_strip = str1.strip()

출력:

Welcome to Guru99!

예시 2:잘못된 데이터 유형에 대한 strip()

Python String strip() 함수는 문자열에서만 작동하며 목록, 튜플 등과 같은 다른 데이터 유형에 사용되는 경우 오류를 반환합니다.

list()에서 사용된 예

mylist = ["a", "b", "c", "d"]
print(mylist.strip()) 

위와 같이 오류가 발생합니다.

Traceback (most recent call last):
  File "teststrip.py", line 2, in <module>
    print(mylist.strip())
AttributeError: 'list' object has no attribute 'strip'

예시 3:문자 매개변수가 없는 strip()

str1 = "Welcome to Guru99!"
after_strip = str1.strip()
print(after_strip)

str2 = "Welcome to Guru99!"
after_strip1 = str2.strip()
print(after_strip1)

출력:

Welcome to Guru99!
Welcome to Guru99!

예제 4:strip() 문자 매개변수 전달

str1 = "****Welcome to Guru99!****"
after_strip = str1.strip("*")
print(after_strip)

str2 = "Welcome to Guru99!"
after_strip1 = str2.strip("99!")
print(after_strip1)
str3 = "Welcome to Guru99!"
after_strip3 = str3.strip("to")
print(after_strip3)

출력:

Welcome to Guru99!
Welcome to Guru
Welcome to Guru99!

Python strip() 함수를 사용하는 이유는 무엇입니까?

다음은 Python 스트립 기능을 사용하는 이유입니다.

요약:


python

  1. 파이썬 함수 인수
  2. 파이썬 클로저
  3. 예제가 있는 Java 문자열 charAt() 메서드
  4. 예제가 포함된 Java 문자열 endWith() 메서드
  5. 예제가 있는 Python 문자열 count()
  6. Python String format() 예제로 설명
  7. 파이썬 문자열 길이 | len() 메서드 예제
  8. 예제가 있는 Python 문자열 find() 메서드
  9. 예제가 있는 Python Lambda 함수
  10. 예제가 있는 Python round() 함수