[python] 문자열 변환하기
Python에서 문자열을 처리하고 변환하는 방법에 대해 알아보겠습니다.
1. 대문자로 변환하기
문자열을 대문자로 변환하려면 upper()
메서드를 사용합니다.
예시:
text = "hello, world"
upper_text = text.upper()
print(upper_text) # 출력: HELLO, WORLD
2. 소문자로 변환하기
문자열을 소문자로 변환하려면 lower()
메서드를 사용합니다.
예시:
text = "HELLO, WORLD"
lower_text = text.lower()
print(lower_text) # 출력: hello, world
3. 대소문자 상호 변환하기
upper()
와 lower()
메서드를 조합하여 대문자와 소문자를 상호 변환할 수 있습니다.
예시:
text = "Hello, World"
switched_text = text.swapcase()
print(switched_text) # 출력: hELLO, wORLD
이제 Python에서 문자열을 변환하는 간단한 방법에 대해 알아보았습니다. 다양한 메서드를 활용하여 문자열을 자유롭게 조작할 수 있습니다.
참고 문헌: