[파이썬 기초]
문자열의 모든 메소드 확인 방법
문자열을 하나 정의합니다.
>>> S='hi'
정의한 문자열에 dir 함수를 적용합니다. 아래와 같이 모든 메소드가 출력됩니다.
>>> dir(S)
['__add__',
'__class__',
'__contains__',
'__delattr__',
'__dir__',
'__doc__',
'__eq__',
'__format__',
'__ge__',
'__getattribute__',
'__getitem__',
'__getnewargs__',
'__gt__',
'__hash__',
'__init__',
'__init_subclass__',
'__iter__',
'__le__',
'__len__',
'__lt__',
'__mod__',
'__mul__',
'__ne__',
'__new__',
'__reduce__',
'__reduce_ex__',
'__repr__',
'__rmod__',
'__rmul__',
'__setattr__',
'__sizeof__',
'__str__',
'__subclasshook__',
'capitalize',
'casefold',
'center',
'count',
'encode',
'endswith',
'expandtabs',
'find',
'format',
'format_map',
'index',
'isalnum',
'isalpha',
'isascii',
'isdecimal',
'isdigit',
'isidentifier',
'islower',
'isnumeric',
'isprintable',
'isspace',
'istitle',
'isupper',
'join',
'ljust',
'lower',
'lstrip',
'maketrans',
'partition',
'replace',
'rfind',
'rindex',
'rjust',
'rpartition',
'rsplit',
'rstrip',
'split',
'splitlines',
'startswith',
'strip',
'swapcase',
'title',
'translate',
'upper',
'zfill']
'4.파이썬 기본 자료형 > 문자열' 카테고리의 다른 글
파이썬에서 문자열 여러줄로 만들기 (0) | 2020.11.22 |
---|---|
[파이썬 기초] 이스케이프 문자 (0) | 2020.11.11 |
[파이썬] 문자열 구분기호로 분리하여 리스트로 변환 (split) (0) | 2020.10.22 |
[파이썬] 문자열에서 원하는 문자 위치 찾기 (find) (0) | 2020.10.22 |
[파이썬] 문자열(String) 수정 (2) | 2020.10.22 |
댓글