반응형 기초 썸네일형 리스트형 파이썬 기초[문자열] Exercise 21. 문자열 다루기 (strip)¶ 다음 문자열에서 ...를 제거하라. mystr = "a man goes into the room..." 출력 예: 'a man goes into the room' mystr = "a man goes into the room..." print(mystr.strip('.')) Exercise 22. 문자열 다루기 (strip) 주식 종목을 나타내는 종목코드에 공백과 줄바꿈 기호가 포함되어 있다. 공백과 잘바꿈 기호를 제거하고 종목코드만을 추출하라. code = ' 000660\n ' 출력: '000660' code = ' 000660\n ' print(code.strip(' \n')) Exercise 23. 문자열 다루기 (count) 다음 문자열에서 '.. 더보기 이전 1 다음