Development language/Python

Python-11. Str Class의 메소드 종류와 사용법 / find / count / strip / replace / lower / upper / etc. / method Nesting

DOT-ICD 2021. 12. 1. 17:06
728x90
 

Python-10 Methods란? / 메소드 / 클래스 / 모듈과 클래스의 차이

Q. Class? 이전의 포스트에서 여러가지 자료형들을 설명하였다. 파이썬에서는 이 자료형들을 어떻게 내부적으로 구현하고 있을까? 파이썬에서 존재하는 모든 자료형들은 모두 클래스 라는 객체의

dot-learning.tistory.com

위 포스트의 말미에서 말했듯, 파이썬은 문자열 클래스에 대해 많은 메소드를 지원하고 있다. 이를 통해 파이썬에서 문자열을 매우 쉽게 다룰 수 있다. 이제 어떤 메소드들이 존재하고 어떻게 사용하는지 알아보자.

우선, help함수를 사용해 str클래스에 어떤 메소드가 있는지 확인해보자!

더보기
더보기
>>>help(str)
Help on class str in module builtins:

class str(object)
 |  str(object='') -> str
 |  str(bytes_or_buffer[, encoding[, errors]]) -> str
 |  
 |  Create a new string object from the given object. If encoding or
 |  errors is specified, then the object must expose a data buffer
 |  that will be decoded using the given encoding and error handler.
 |  Otherwise, returns the result of object.__str__() (if defined)
 |  or repr(object).
 |  encoding defaults to sys.getdefaultencoding().
 |  errors defaults to 'strict'.
 |  
 |  Methods defined here:
 |  
 |  __add__(self, value, /)
 |      Return self+value.
 |  
 |  __contains__(self, key, /)
 |      Return key in self.
 |  
 |  __eq__(self, value, /)
 |      Return self==value.
 |  
 |  __format__(self, format_spec, /)
 |      Return a formatted version of the string as described by format_spec.
 |  
 |  __ge__(self, value, /)
 |      Return self>=value.
 |  
 |  __getattribute__(self, name, /)
 |      Return getattr(self, name).
 |  
 |  __getitem__(self, key, /)
 |      Return self[key].
 |  
 |  __getnewargs__(...)
 |  
 |  __gt__(self, value, /)
 |      Return self>value.
 |  
 |  __hash__(self, /)
 |      Return hash(self).
 |  
 |  __iter__(self, /)
 |      Implement iter(self).
 |  
 |  __le__(self, value, /)
 |      Return self<=value.
 |  
 |  __len__(self, /)
 |      Return len(self).
 |  
 |  __lt__(self, value, /)
 |      Return self<value.
 |  
 |  __mod__(self, value, /)
 |      Return self%value.
 |  
 |  __mul__(self, value, /)
 |      Return self*value.
 |  
 |  __ne__(self, value, /)
 |      Return self!=value.
 |  
 |  __repr__(self, /)
 |      Return repr(self).
 |  
 |  __rmod__(self, value, /)
 |      Return value%self.
 |  
 |  __rmul__(self, value, /)
 |      Return value*self.
 |  
 |  __sizeof__(self, /)
 |      Return the size of the string in memory, in bytes.
 |  
 |  __str__(self, /)
 |      Return str(self).
 |  
 |  capitalize(self, /)
 |      Return a capitalized version of the string.
 |      
 |      More specifically, make the first character have upper case and the rest lower
 |      case.
 |  
 |  casefold(self, /)
 |      Return a version of the string suitable for caseless comparisons.
 |  
 |  center(self, width, fillchar=' ', /)
 |      Return a centered string of length width.
 |      
 |      Padding is done using the specified fill character (default is a space).
 |  
 |  count(...)
 |      S.count(sub[, start[, end]]) -> int
 |      
 |      Return the number of non-overlapping occurrences of substring sub in
 |      string S[start:end].  Optional arguments start and end are
 |      interpreted as in slice notation.
 |  
 |  encode(self, /, encoding='utf-8', errors='strict')
 |      Encode the string using the codec registered for encoding.
 |      
 |      encoding
 |        The encoding in which to encode the string.
 |      errors
 |        The error handling scheme to use for encoding errors.
 |        The default is 'strict' meaning that encoding errors raise a
 |        UnicodeEncodeError.  Other possible values are 'ignore', 'replace' and
 |        'xmlcharrefreplace' as well as any other name registered with
 |        codecs.register_error that can handle UnicodeEncodeErrors.
 |  
 |  endswith(...)
 |      S.endswith(suffix[, start[, end]]) -> bool
 |      
 |      Return True if S ends with the specified suffix, False otherwise.
 |      With optional start, test S beginning at that position.
 |      With optional end, stop comparing S at that position.
 |      suffix can also be a tuple of strings to try.
 |  
 |  expandtabs(self, /, tabsize=8)
 |      Return a copy where all tab characters are expanded using spaces.
 |      
 |      If tabsize is not given, a tab size of 8 characters is assumed.
 |  
 |  find(...)
 |      S.find(sub[, start[, end]]) -> int
 |      
 |      Return the lowest index in S where substring sub is found,
 |      such that sub is contained within S[start:end].  Optional
 |      arguments start and end are interpreted as in slice notation.
 |      
 |      Return -1 on failure.
 |  
 |  format(...)
 |      S.format(*args, **kwargs) -> str
 |      
 |      Return a formatted version of S, using substitutions from args and kwargs.
 |      The substitutions are identified by braces ('{' and '}').
 |  
 |  format_map(...)
 |      S.format_map(mapping) -> str
 |      
 |      Return a formatted version of S, using substitutions from mapping.
 |      The substitutions are identified by braces ('{' and '}').
 |  
 |  index(...)
 |      S.index(sub[, start[, end]]) -> int
 |      
 |      Return the lowest index in S where substring sub is found,
 |      such that sub is contained within S[start:end].  Optional
 |      arguments start and end are interpreted as in slice notation.
 |      
 |      Raises ValueError when the substring is not found.
 |  
 |  isalnum(self, /)
 |      Return True if the string is an alpha-numeric string, False otherwise.
 |      
 |      A string is alpha-numeric if all characters in the string are alpha-numeric and
 |      there is at least one character in the string.
 |  
 |  isalpha(self, /)
 |      Return True if the string is an alphabetic string, False otherwise.
 |      
 |      A string is alphabetic if all characters in the string are alphabetic and there
 |      is at least one character in the string.
 |  
 |  isascii(self, /)
 |      Return True if all characters in the string are ASCII, False otherwise.
 |      
 |      ASCII characters have code points in the range U+0000-U+007F.
 |      Empty string is ASCII too.
 |  
 |  isdecimal(self, /)
 |      Return True if the string is a decimal string, False otherwise.
 |      
 |      A string is a decimal string if all characters in the string are decimal and
 |      there is at least one character in the string.
 |  
 |  isdigit(self, /)
 |      Return True if the string is a digit string, False otherwise.
 |      
 |      A string is a digit string if all characters in the string are digits and there
 |      is at least one character in the string.
 |  
 |  isidentifier(self, /)
 |      Return True if the string is a valid Python identifier, False otherwise.
 |      
 |      Call keyword.iskeyword(s) to test whether string s is a reserved identifier,
 |      such as "def" or "class".
 |  
 |  islower(self, /)
 |      Return True if the string is a lowercase string, False otherwise.
 |      
 |      A string is lowercase if all cased characters in the string are lowercase and
 |      there is at least one cased character in the string.
 |  
 |  isnumeric(self, /)
 |      Return True if the string is a numeric string, False otherwise.
 |      
 |      A string is numeric if all characters in the string are numeric and there is at
 |      least one character in the string.
 |  
 |  isprintable(self, /)
 |      Return True if the string is printable, False otherwise.
 |      
 |      A string is printable if all of its characters are considered printable in
 |      repr() or if it is empty.
 |  
 |  isspace(self, /)
 |      Return True if the string is a whitespace string, False otherwise.
 |      
 |      A string is whitespace if all characters in the string are whitespace and there
 |      is at least one character in the string.
 |  
 |  istitle(self, /)
 |      Return True if the string is a title-cased string, False otherwise.
 |      
 |      In a title-cased string, upper- and title-case characters may only
 |      follow uncased characters and lowercase characters only cased ones.
 |  
 |  isupper(self, /)
 |      Return True if the string is an uppercase string, False otherwise.
 |      
 |      A string is uppercase if all cased characters in the string are uppercase and
 |      there is at least one cased character in the string.
 |  
 |  join(self, iterable, /)
 |      Concatenate any number of strings.
 |      
 |      The string whose method is called is inserted in between each given string.
 |      The result is returned as a new string.
 |      
 |      Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs'
 |  
 |  ljust(self, width, fillchar=' ', /)
 |      Return a left-justified string of length width.
 |      
 |      Padding is done using the specified fill character (default is a space).
 |  
 |  lower(self, /)
 |      Return a copy of the string converted to lowercase.
 |  
 |  lstrip(self, chars=None, /)
 |      Return a copy of the string with leading whitespace removed.
 |      
 |      If chars is given and not None, remove characters in chars instead.
 |  
 |  partition(self, sep, /)
 |      Partition the string into three parts using the given separator.
 |      
 |      This will search for the separator in the string.  If the separator is found,
 |      returns a 3-tuple containing the part before the separator, the separator
 |      itself, and the part after it.
 |      
 |      If the separator is not found, returns a 3-tuple containing the original string
 |      and two empty strings.
 |  
 |  removeprefix(self, prefix, /)
 |      Return a str with the given prefix string removed if present.
 |      
 |      If the string starts with the prefix string, return string[len(prefix):].
 |      Otherwise, return a copy of the original string.
 |  
 |  removesuffix(self, suffix, /)
 |      Return a str with the given suffix string removed if present.
 |      
 |      If the string ends with the suffix string and that suffix is not empty,
 |      return string[:-len(suffix)]. Otherwise, return a copy of the original
 |      string.
 |  
 |  replace(self, old, new, count=-1, /)
 |      Return a copy with all occurrences of substring old replaced by new.
 |      
 |        count
 |          Maximum number of occurrences to replace.
 |          -1 (the default value) means replace all occurrences.
 |      
 |      If the optional argument count is given, only the first count occurrences are
 |      replaced.
 |  
 |  rfind(...)
 |      S.rfind(sub[, start[, end]]) -> int
 |      
 |      Return the highest index in S where substring sub is found,
 |      such that sub is contained within S[start:end].  Optional
 |      arguments start and end are interpreted as in slice notation.
 |      
 |      Return -1 on failure.
 |  
 |  rindex(...)
 |      S.rindex(sub[, start[, end]]) -> int
 |      
 |      Return the highest index in S where substring sub is found,
 |      such that sub is contained within S[start:end].  Optional
 |      arguments start and end are interpreted as in slice notation.
 |      
 |      Raises ValueError when the substring is not found.
 |  
 |  rjust(self, width, fillchar=' ', /)
 |      Return a right-justified string of length width.
 |      
 |      Padding is done using the specified fill character (default is a space).
 |  
 |  rpartition(self, sep, /)
 |      Partition the string into three parts using the given separator.
 |      
 |      This will search for the separator in the string, starting at the end. If
 |      the separator is found, returns a 3-tuple containing the part before the
 |      separator, the separator itself, and the part after it.
 |      
 |      If the separator is not found, returns a 3-tuple containing two empty strings
 |      and the original string.
 |  
 |  rsplit(self, /, sep=None, maxsplit=-1)
 |      Return a list of the words in the string, using sep as the delimiter string.
 |      
 |        sep
 |          The delimiter according which to split the string.
 |          None (the default value) means split according to any whitespace,
 |          and discard empty strings from the result.
 |        maxsplit
 |          Maximum number of splits to do.
 |          -1 (the default value) means no limit.
 |      
 |      Splits are done starting at the end of the string and working to the front.
 |  
 |  rstrip(self, chars=None, /)
 |      Return a copy of the string with trailing whitespace removed.
 |      
 |      If chars is given and not None, remove characters in chars instead.
 |  
 |  split(self, /, sep=None, maxsplit=-1)
 |      Return a list of the words in the string, using sep as the delimiter string.
 |      
 |      sep
 |        The delimiter according which to split the string.
 |        None (the default value) means split according to any whitespace,
 |        and discard empty strings from the result.
 |      maxsplit
 |        Maximum number of splits to do.
 |        -1 (the default value) means no limit.
 |  
 |  splitlines(self, /, keepends=False)
 |      Return a list of the lines in the string, breaking at line boundaries.
 |      
 |      Line breaks are not included in the resulting list unless keepends is given and
 |      true.
 |  
 |  startswith(...)
 |      S.startswith(prefix[, start[, end]]) -> bool
 |      
 |      Return True if S starts with the specified prefix, False otherwise.
 |      With optional start, test S beginning at that position.
 |      With optional end, stop comparing S at that position.
 |      prefix can also be a tuple of strings to try.
 |  
 |  strip(self, chars=None, /)
 |      Return a copy of the string with leading and trailing whitespace removed.
 |      
 |      If chars is given and not None, remove characters in chars instead.
 |  
 |  swapcase(self, /)
 |      Convert uppercase characters to lowercase and lowercase characters to uppercase.
 |  
 |  title(self, /)
 |      Return a version of the string where each word is titlecased.
 |      
 |      More specifically, words start with uppercased characters and all remaining
 |      cased characters have lower case.
 |  
 |  translate(self, table, /)
 |      Replace each character in the string using the given translation table.
 |      
 |        table
 |          Translation table, which must be a mapping of Unicode ordinals to
 |          Unicode ordinals, strings, or None.
 |      
 |      The table must implement lookup/indexing via __getitem__, for instance a
 |      dictionary or list.  If this operation raises LookupError, the character is
 |      left untouched.  Characters mapped to None are deleted.
 |  
 |  upper(self, /)
 |      Return a copy of the string converted to uppercase.
 |  
 |  zfill(self, width, /)
 |      Pad a numeric string with zeros on the left, to fill a field of the given width.
 |      
 |      The string is never truncated.
 |  
 |  ----------------------------------------------------------------------
 |  Static methods defined here:
 |  
 |  __new__(*args, **kwargs) from builtins.type
 |      Create and return a new object.  See help(type) for accurate signature.
 |  
 |  maketrans(...)
 |      Return a translation table usable for str.translate().
 |      
 |      If there is only one argument, it must be a dictionary mapping Unicode
 |      ordinals (integers) or characters to Unicode ordinals, strings or None.
 |      Character keys will be then converted to ordinals.
 |      If there are two arguments, they must be strings of equal length, and
 |      in the resulting dictionary, each character in x will be mapped to the
 |      character at the same position in y. If there is a third argument, it
 |      must be a string, whose characters will be mapped to None in the result.

기본적인 사용 문법

<<expression>>.<<method_name>>(<<arguments>>)

 

*여기서 arguments는 parameter안에 들어간 값을 의미한다!

또한, 문자열의 알파벳은 대문자와 소문자가 구분된다! 'hello'는 'Hello'와 다르다는 의미이다!

더 자세한 점은 아래의 포스트를 참조하자

 

Python-10 Methods란? / 메소드 / 클래스 / 모듈과 클래스의 차이

Q. Class? 이전의 포스트에서 여러가지 자료형들을 설명하였다. 파이썬에서는 이 자료형들을 어떻게 내부적으로 구현하고 있을까? 파이썬에서 존재하는 모든 자료형들은 모두 클래스 라는 객체의

dot-learning.tistory.com


str.capitalize()

문자열의 가장 앞부분 글자를 대문자로 변환하고, 나머지는 소문자로 변환한 문자열을 반환하는 메소드이다.

별도의 argument를 요구하지 않으며, 실행 결과 반환값의 자료형은 str이다.

>>> 'helLo'.capitalize()
'Hello'
>>>

str.count(s)

문자열에서 argmuent로 주어진 문자 또는 문자열이 몇번 나오는지 숫자를 세고 그 값을 반환한다.

문자 또는 문자열의 argument 하나를 요구하며, 실행 결과 반환값의 자료형은 int이다. 

>>> 'Hello'.count('lo')
1
>>> 'Hello'.count('o')
1
>>> 'Hello'.count('l')
2

with메소드

이 종류의 메소드들은 문자열의 시작과 끝이 어떤 형태인지에 대해 다루는 메소드이다.

str.startswith(end)

문자열이 주어진 argument로 시작한다면 True를 아니라면 False를 반환한다.

문자 또는 문자열의 argument하나를 요구하며, 실행 결과 반환값의 자료형은 Boolean이다.

>>> 'Hello world'.startswith('hello')
False
>>> 'Hello world'.startswith('Hello')
True
>>>

str.endswith(end)

문자열이 주어진 argument로 끝난다면 True를 아니라면 False를 반환한다.

문자 또는 문자열의 argument하나를 요구하며, 실행 결과 반환값의 자료형은 Boolean이다.

>>> 'Hello world'.endswith('world')
True
>>> 'Hello world'.endswith('Steven')
False
>>>

find메소드

이 메소드의 경우 문자열에서 특정 문자 또는 문자열이 어디있는지 찾아내는 메소드이다. 찾는 범위에 따라 3가지의 방식으로 사용할 수 있다. 

문자열 index에 대해 궁금하다면 아래의 포스트를 참조하자

 

Python-5. String-문자열 / 따옴표 / Escape Sequence / print() / input()

Q.문자열이란? 문자열은 말그대로 문자들의 나열을 의미한다. 문자열에는 알파벳, 한글, 숫자, 특수문자들이 포함될 수 있다. (여기서 주의해야하는데, 문자로 표현된 숫자는 계산할 수 없다! 즉,

dot-learning.tistory.com

str.find(s)

문자열 전체에서 주어진 argument가 첫번째로 나타난 지점의 index를 반환한다. 만약, 한번도 나타나지 않았다면 int자료형 -1을 반환한다. 

문자 또는 문자열의 argument하나를 요구하며, 실행 결과 반환값의 자료형은 int이다.

>>> 'Hello world'.find('w')
6
>>> 'Hello world'.find('orl')
7

str.find(s, beg)

문자열에서 int형인 beg argumnet를 인덱스로 생각하고, 그 index이후의 문자열에 대해 s로 입력받은 문자 또는 문자열이 처음으로 나타나는 부분의 index를 반환한다.

문자 또는 문자열을 s위치의 argument로 요구하고, int타입의 index를 beg위치의 argument로 요구한다. 실행 결과 반환값의 자료형은 int이다.

>>> 'abcd abcd'.find('a',2)
5
>>> 'abcd abcd'.find('a')
0
>>> 'abcd abcd'.find('ab',2)
5
>>> 'abcd abcd'.find('ab')
0

str.find(s, beg, end)

문자열에서 int형인 beg와 end argument를 인덱스로 생각한다. 주어진 문자열의 beg index부터 end index까지의 범위 안에서 s agrument의 문자 또는 문자열이 처음으로 나타나는 부분의 index를 반환한다.

문자 또는 문자열을 s위치의 argument로 요구하고, int타입의 시작 index를 beg위치의 argumnet로, int타입의 끝 index를 end위치의 argument로 요구한다. 실행 결과 반환값의 자료형은 int이다.

>>> 'abcd abcd abcd'.find('abc',3,5)
-1
>>> 'abcd abcd abcd'.find('b',3,9)
6

lower/upper관련 메소드

이 종류의 메소드들은 문자열을 이루는 알파벳의 대문자와 소문자 형태를 다루는 메소드들이다.

str.lower()

문자열을 모두 소문자로 변환한 것을 반환하는 메소드이다.

별도로 요구하는 argument는 없다. 실행결과 반환값은 당연히 str이다.

>>> "ABCD".lower()
'abcd'

str.upper()

문자열을 모두 대문자로 변환한 것을 반환하는 메소드이다. 

별도로 요구하는 argument는 없다. 실행결과 반환값은 당연히 str이다.

>>> 'abcd'.upper()
'ABCD'

str.islower()

문자열이 모두 소문자라면 True를 반환하는 메소드이다.

별도로 요구하는 argument는 없다. 실행결과 반환값은 Boolean이다.

>>> 'abcd'.islower()
True
>>> 'Abcd'.islower()
False

str.isupper()

문자열이 모두 대문자라면 True를 반환하는 메소드이다.

별도로 요구하는 argument는 없다. 실행결과 반환값은 Boolean이다.

>>> 'ABCd'.isupper()
False
>>> 'ABCD'.isupper()
True

 


strip관련 메소드

문자열에 포함된 공백을 다루는 메소드이다. 

argument가 주어지지 않는다면 공백을 제거하는데, 이때 공백 이외의 다른문자가 나올때까지 제거하거나, 뒷부분이 모두 공백인 경우의 공백을 제거한다.

말로 설명하기 어려운데, 아래의 예제를 보면 조금 더 쉽게 이해가 될 것이다. 

str.strip()

문자열의 시작부분의 공백덩어리와 끝부분의 공백덩어리를 모두 제거한다. 

별도로 요구하는 argument는 없다. 실행결과 반환값은 앞과 뒤의 공백덩어리가 제거된 문자열 즉 str이다.

>>> "    Hello world     ".strip()
'Hello world'

str.strip(s)

문자열의 시작부분에 s위치에 입력받은 argument가 처음부터 계속되는 부분까지 제거하고, 끝부분에서 계속해서 반복되는 부분을 제거한다. 

요구하는 argument는 s위치에 문자 또는 문자열 str타입을 요구한다. 실행결과 반환값은 문자열이다.

>>> "aaaaHello worldaaaa".strip('a')
'Hello world'
>>>"ababHello worldabab".strip('ab')
'Hello world'

str.rstrip()

문자열의 오른쪽 끝부분의 마지막 공백덩어리들을 제거한다.

별도로 요구하는 argument는 없다. 실행결과 반환값은 오른쪽 마지막 공백덩어리가 제거된 문자열 즉 str이다.

>>>"    Hello world     ".rstrip()
'    Hello world'

str.rstrip(s)

문자열의 오른쪽 끝부분의 s argument 덩어리들을 제거한다.

요구하는 argument는 s위치에 문자 또는 문자열 str타입을 요구한다. 실행결과 반환값은 문자열이다.

>>> "aaaaHello worldaaaa".rstrip('a')
'aaaaHello world'

str.lstrip()

문자열의 시작부분의 공백덩어리들을 제거한다.

>>>"    Hello world     ".lstrip()
'Hello world     '

str.lstrip(s)

문자열의 시작부분의 s argument 덩어리들을 제거한다.

요구하는 argument는 s위치에 문자 또는 문자열 str타입을 요구한다. 실행결과 반환값은 문자열이다.

>>> "aaaaHello worldaaaa".lstrip('a')
'Hello worldaaaa'
>>> "ababHello worldabab".lstrip('ab')
'Hello worldabab'

str.replace(old, new)

문자열에서 old argument를 찾아서 new argument로 교체해주는 메소드이다.

요구하는 argument로 기존 문자열에서 찾아낼 문자 또는 문자열을 old 위치에 받고, 찾아낸 문자 또는 문자열을 변경할 문자 또는 문자열을 new 위치에 받는다. 실행결과 반환값은 문자열이다.

>>> "I am a student.".replace('student','programmer')
'I am a programmer.'

str.split()

문자열을 공백을 기준으로 잘라 리스트로 반환하는 메소드이다.

요구하는 argument는 없으며, 반환값의 타입은 리스트이다.

>>> "I am a student.".split()
['I', 'am', 'a', 'student.']

반환값의 형태인 리스트는 다음의 포스트에서 다룬다.


str.swapcase()

문자열의 알파벳 소문자와 대문자를 각각 대문자와 소문자로 변환한 문자 또는 문자열을 반환하는 메소드이다.

요구하는 argument는 없으며, 반환값의 타입은 문자열이다.

 

>>> "A".swapcase()
'a'
>>> 'abCD'.swapcase()
'ABcd'
>>> 'ABcd'.swapcase()
'abCD'
>>> 'a'.swapcase()
'A'

str.format(<<expressions>>)

포맷의 경우 굉장히 많이 자주 사용되는 함수이다! 그 용법을 꼭 자세히 알아두자!

우선, 메소드의 대상이 되는 문자열은 다음과 같이 중괄호를 포함한 문자열이다.

'{} rides {} bicycle {}' or '{0} rides {1} bicycle {2}' or '{0} rides {2} bicycle {1}' or ...

이제 메소드 사용 코드를 보자.

>>> '{0} rides {1} bicycle {2}'.format('Yoon','nice','at night')
'Yoon rides nice bicycle at night'
>>> '{} rides {} bicycle {}'.format('Yoon','nice','at night')
'Yoon rides nice bicycle at night'
>>> '{0} rides {2} bicycle {1}'.format('Yoon','nice','at night')
'Yoon rides at night bicycle nice'

기본적으로 format메소드는 대상이 되는 문자열을 일종의 문자열 형식으로 보고, 그 형식의 빈부분 즉, 중괄호{}부분을 입력받은 argument로 채워나간다. 이때, 채워나가는 순서는 빈 중괄호만을 사용했다면 앞에서부터 순서대로 0, 1, 2, ... 번째이다.

format메소드는 이 순서에 따라 첫번째 argument는 0번째 {}의 위치에, 두번째 argument는 1번째 {}의 위치에,... 식으로 배치한 문자열을 반환한다. 

중요한점은 format메소드는 argument의 타입으로 int, float, str형 등 다양한 종류의 객체를 받을 수 있다. 

>>> 'A square that has width {} and height {} has area {}'.format(2,3.0,2*3.0)
'A square that has width 2 and height 3.0 has area 6.0'

이처럼 int형 float형 str형 등의 타입을 사용할 수 있다. 


Nesting

위에서 보았던 메소드들은 연달아서 사용이 가능하다.

>>>'Computer Science'.swapcase().endswith('ENCE')
True

이처럼 타입에 관한 부분만 주의한다면 (메소드의 주체가 메소드가 요구하는 타입과 같은 타입이어야만 한다.) 메소드를 연달아서 사용하는 것이 가능하다. 

이때 메소드의 실행순서는 왼쪽부터 즉 먼저 쓰인 메소드부터 실행된다.

728x90