티스토리 뷰
안녕하세요 동기 여러분!
오늘은 문자열의 메서드인 .lower(), .upper(), .title()에 대해 알아봅시다!
Formatting Methods
문자열을 한글로 만든다면 해당이 안되지만(혹시 몰라서 한글로 된 문자열에 전부 해보았는데 에러는 뜨지 않고 아무런 변화가 없습니다.) 영어로 된 문자열을 사용한다면 소문자, 대문자, 그리고 제목을 작성하는 데 있어 아주 도움이 되는 메서드를 소개합니다!
메서드(Method) 사용방법
메서드의 사용 방법은 아래와 같습니다.
문자열이름 = "power overwhelming."
문자열이름.메서드()
문자열 이름 옆에 . (dot)을 붙이고 사용하고자 하는 메서드명을 붙이고 ( ) (parentheses)를 써주면 됩니다!
.lower() 소문자로 만들어 줄게!
.lower() 메서드는 문자열의 모든 문자를 소문자로 만들어줍니다.
invincibility_cheat = "POWER OVERWHEMING"
lower_invincibility_cheat = invincibility_cheat.lower()
print(lower_invincibility_cheat)
# 출력값 : power overwhelming
.upper() 대문자로 만들어 줄게!
.upper() 메서드는 문자열의 모든 문자를 대문자로 만들어줍니다.
invincibility_cheat = "power overwhelming"
upper_invincibility_cheat = invincibility_cheat.upper()
print(upper_invincibility_cheat)
# 출력값 : POWER OVERWHELMING
.title() 제목으로 만들어 줄게!
.title() 메서드는 문자열의 각 단어(띄어쓰기 기준)의 맨 앞글자만 대문자로 만들어줍니다.
invincibility_cheat = "power overwhelming"
title_invincibility_cheat = invincibility_cheat.title()
print(title_invincibility_cheat)
# 출력값 : Power Overwhelming
어떤가요? 출력값들의 차이를 보셨나요?
압도적인 힘으로!!!
오늘의 느낌
파이썬 하다보니 또 재밌네욬ㅋㅋ
'Python' 카테고리의 다른 글
[Python] Joining Strings (0) | 2022.02.08 |
---|---|
[Python] Splitting Strings (0) | 2022.02.08 |
[Python] String (3) (0) | 2022.02.07 |
[Python] String (2) (0) | 2022.02.07 |
[Python] String (1) (0) | 2022.02.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- html
- 자바스크립트
- 프로그래머스
- 함수
- 객체
- javascript
- for문
- 타입 좁히기
- if문
- em
- Object
- 실수
- 동기코딩
- Python
- 타입스크립트
- Type
- css position
- method
- Array
- 반복문
- HTML 기본
- 메서드
- Margin
- 파이썬
- CSS
- CSS 포지션
- html table
- Typescript
- function
- padding
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함