Python
[Python] Formatting Methods
Dongi
2022. 2. 7. 14:35
안녕하세요 동기 여러분!
오늘은 문자열의 메서드인 .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
어떤가요? 출력값들의 차이를 보셨나요?
압도적인 힘으로!!!
오늘의 느낌
파이썬 하다보니 또 재밌네욬ㅋㅋ