-
참고
Python예제: http://infos.tistory.com/1982
"And".join(["V1", "V2", "V3"]) # 'V1AndV2AndV3'
"".join(["V1", "V2", "V3"]) # 'V1V2V3'
"aassddssff".split("ss") # ['aa', 'dd', 'ff']
"aassddssff".split("ss", 1) # ['aa', 'ddssff']
"aassddssff".find("ss") # 3
"aassddssff".find("ss", 3, 8) # 6
"aassddssff".startswith("aa")
True
"aassddssff".endswith("sf")
False
"aassddssff".endswith(("sf", "ff"))
True
"{0} and {1}".format("V1", "V2") # 'V1 and V2'
"{k1} and {k2}".format(k1="V1", k2="V2") # 'V1 and V2'
"{k1} and {k2[1]}".format(k1="V1", k2=["V2","V3"]) # 'V1 and V3'
"%s and %s" % ("V1", "V2") # 'V1 and V2'
공백을 제거: strip, lstrip, rstrip
주의 tab 문자들도 공백으로 인식할지 여부는 운영체제마다 달라질 수 있다.
공백 인식 목록: string.whitespace # ' \t\n\r\x0b\x0c'
'Python' 카테고리의 다른 글
Python예제 - soup.find, soup.find_all (0) 2018.02.04 Python예제 - soup 기본 개념 (0) 2018.02.03 Python예제 - soup.extract() (0) 2018.02.03 Python문법 - 예외 try except else finally assert raise (0) 2018.02.01 Python예제 - string.digits string.ascii_letters (0) 2018.01.31 Python예제 - 문자열 속 특수문자 변환 (0) 2018.01.31 Python예제 - ord, hex, chr, unichr (0) 2018.01.31 Python함수 - Cmp 비교 (0) 2018.01.30