meta data for this page
  •  

문서의 이전 판입니다!


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() : 문자열 길이
    1. [code]»> a = 'I Love Python'

»> len(a) 13[/code]

  1. min() :
  2. max() :
  3. count() :