메소드 | 리턴 값 |
문자열변수.upper() | 대문자로 변형된 문자열 |
문자열변수.lower() | 소문자로 변형된 문자열 |
문자열변수.replace(‘찾을 문자열’, ‘바꿀 문자열’) | 해당 단어로 대체된 문자열 |
문자열변수.find('찾을 문자열‘) | 찾을 문자열의 시작 인덱스 (0부터 시작) |
>>> banner = "FreeFloat FTP Server" >>> print banner FreeFloat FTP Server
>>> print banner.lower() freefloat ftp server
>>> print banner.upper() FREEFLOAT FTP SERVER
>>> print banner.replace('FTP', 'ABC') FreeFloat ABC Server
>>> print banner.find('Server') 14 |
'Python > Basic' 카테고리의 다른 글
[Python-Basic] 예외 처리(Except) (0) | 2014.09.16 |
---|---|
[Python-Basic] Network Socket (0) | 2014.09.16 |
[Python-basic] 주요 딕셔너리 메소드 (0) | 2014.09.16 |
[Python-basic] 주요 리스트 메소드 (0) | 2014.09.16 |
[Python-basic] 변수 (0) | 2014.09.15 |