python 문자열 (1) 썸네일형 리스트형 [Python 문법] string 멤버 함수 - split, join, upper 등 문자열 관련 함수들 1. startswith( ), endswith( ) : 문자열(STR)이 특정 문자열(A)로 시작하는가, 끝나는가 'Hello World'.startswith('Hello')#True 'untitled.txt'.endswith('txt')#True 'hi.hwp'.endswith('txt')#False True True False 사용형태 : STR.startswith(A) 2. len( ) : 문자열 길이 출력 fruit = "apple" len(fruit) 5 사용형태 : len(STR) 3. split( ) :특정 문자(A)를 중심으로, 문자열(STR)을 분리하여 리스트로 만들어 주는 함수 fruits = "사과랑 배랑 복숭아" fruits.split('랑 ') ['사과', '.. 이전 1 다음