파이썬 - 기초부터 다시한번 확인...
점프투파이썬 복습 내용 정리http://codejob.co.kr/docs/view/2/ ########################################################03. 자료형과 제어문 » 1) 자료형 » [2] 문자열 (String) print "=" * 50 a="abcd" a.count(x)a.upper()a.lower()a.find(x) -> if no existence, return -1a.index(x) -> if no existence, errora.join(s) >>> a= "," >>> a.join('abcd') 'a,b,c,d'a.lstrip()a.rstrip()a.strip()a.replace(s,r)a.split([s])a.swapcase() ########..