
INSERT 함수는 문자열의 특정 위치에서 문자열을 삽입하는 함수입니다. 예를 들어, "hello" 문자열에서 2번째 위치에 "world" 문자열을 삽입하면 "hworldello"가 됩니다.
INSERT 함수의 'len' 매개 변수는 삽입할 문자열의 길이를 지정하는 역할을 합니다. 이 매개 변수를 생략하면 삽입할 문자열의 전체가 삽입됩니다.
INSERT 함수를 사용한 예제는 다음과 같습니다.
#hostingforum.kr
python
str = "hello"
pos = 2
newstr = "world"
result = str[:pos] + newstr + str[pos:]
print(result) # hworldello
str = "hello"
pos = 2
newstr = "world"
len = 5
result = str[:pos] + newstr + str[pos+len:]
print(result) # hworldllo
2025-04-03 06:13