Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

Leading engineer

문자열 본문

Language/Python

문자열

Daisy_EngineerJH 2023. 2. 1. 10:45
함수명 기능 예시
len() 문자열의 문자 개수 반환 len(a)
upper() 대문자로 변환 a.upper()
lower() 소문자로 변환 a.lower()
title() 각 단어의 앞 글자만 대문자로 변환 a.title()
capitalize() 첫글자를 대문자로 변환 a.capitalize()
count() 'a'가 몇개인지 반환 count('a')
find() 'a'가 왼쪽 끝부터 시작하여 몇번째 있는지 반환 find('a')
rfind() find와 반대로 오른쪽 끝부터 몇 번째에 있는지 반환 rfind('a')
startswith() 'a'로 시작하는지 여부 반환 startswith('a')
endswith() 'a'로 끝나는지 여부 반환 endswith('a')
strip() 좌우 공백 삭제 a.strip()
rstrip() 오른쪽 공백 삭제 a.rstrip()
lstrip() 왼쪽 공백 삭제 a.lstrip()
split() 문자열을 공백이나 다른 문자로 나누어 리스트로 반환 a.split()
isdigit() 문자열이 숫자인지 여부 반환 a.isdigit()
islower() 문자열이 소문자인지 여부 반환 a.islower()
isupper() 문자열이 대문자인지 여부 반환 a.isupper()

'Language > Python' 카테고리의 다른 글

함수 만들기  (0) 2023.02.03
python if문  (0) 2023.02.01
자료형과 기본연산  (0) 2023.02.01
변수  (0) 2023.01.30
기본 자료형  (0) 2023.01.30
Comments