Computer Science/Python

Python: Replace 함수

무니화니 2024. 3. 10. 18:57

먼저, official document를 찾아보자.

 

string에서, old에 matching되는 부분을 new로 바꿔준다. 만약 parameter로 count가 주어진다면, 앞에 count개가 변경된다.

 

>>> a="Hello World"
>>> a.replace("l", "L")
'HeLLo WorLd'

 

l을 L로 변경한다.

 

>>> b="Hello World"
>>> b.replace("o", "O", 1)
'HellO World'

 

o를 O로 변경한다. 뒤에 count가 1이기에, 앞에 한 개만 변화한다.

'Computer Science > Python' 카테고리의 다른 글

[Python 3] BOJ 8983 사냥꾼  (0) 2024.04.17
Python: Counter  (0) 2024.03.10