Python Str

String Calculaction String Search Number / Character Space / Strip Encoding / Decoding Lower / Upper Split / Join / Fill
len() startswitch() isalnum() lstrip() encode() islower() split()
min() endswitch() isalpha() rstrip() decode() isupper() splitlines()
max() find() isdigit() strip() lower() replace()
count() rfind() isnumeric() isspace() upper() join()
index() isdecimal() center() swapcase() zfill()
rindex() istitle() ljust()
title() rjust()
capitalize()

String Calulaction

  1. len(str) : 문자열 길이
    • >>> a = 'Hello World'
      >>> len(a)
      12
  2. min(str) : 문자열 str 내 문자 또는 숫자의 최소값
    • 
      
  3. max(str) : 문자열 str 내 문자 또는 숫자의 최대값
    • 
      
  4. count(str, [begin index, end index]) : 지정된 문자열에서 str이 몇개 있는지 개수 반환(시작점, 끝점 위치 설정 가능)
    • 
      

Number / Character

Space / Strip

Encoding / Decoding

Lower / Upper

Split / Join / Fill