•>>> u = ' spam and ham '
•>>> u.strip() 좌우의 공백 제거
•'spam and ham'
•>>> u.rstrip() 오른쪽 공백 제거
•' spam and ham'
•>>> u.lstrip() 왼쪽 공백 제거
•'spam and ham '
•>>> u.replace('spam', 'spam, egg')
•' spam, egg and ham '
•>>> u.split() 리스트로 리턴
•['spam', 'and', 'ham']
•>>> t = u.split()
•>>> ':'.join(t) 문자열로 합쳐서 리턴
•'spam:and:ham'
•>>> print '\n'.join(t)
'IT 이야기 > Programming' 카테고리의 다른 글
정규 표현식 (0) | 2017.05.31 |
---|---|
문자열 (0) | 2017.05.31 |
이스케리프 문자 (0) | 2017.05.31 |
open (파일관리) (0) | 2017.05.31 |
class (0) | 2017.05.30 |