SeouliteLab

[Python/파이썬] lower() 문자열 소문자로 변환하기 본문

프로그래밍

[Python/파이썬] lower() 문자열 소문자로 변환하기

Seoulite Lab 2024. 3. 2. 00:17

예제 1: 문자열의 모든 문자를 소문자로 변환하기

text = "Hello, World!"
lower_text = text.lower()
print(lower_text)

문자열의 모든 문자를 소문자로 변환하는 예제입니다. lower() 메서드를 사용하여 문자열을 소문자로 변환할 수 있습니다.

예제 2: 대문자가 섞인 문자열의 경우

text = "HeLLo, WoRLD!"
lower_text = text.lower()
print(lower_text)

대문자와 소문자가 섞인 문자열의 경우에도 lower() 메서드를 사용하여 모든 문자를 소문자로 변환할 수 있습니다.

예제 3: 숫자나 특수문자는 변환되지 않음

text = "123!@#"
lower_text = text.lower()
print(lower_text)

숫자나 특수문자는 lower() 메서드에 의해 변환되지 않습니다. 이 메서드는 문자열의 알파벳 문자만 소문자로 변환합니다.

예제 4: 공백 포함된 문자열

text = " Hello, World! "
lower_text = text.lower()
print(lower_text)

문자열의 앞뒤에 공백이 포함된 경우에도 lower() 메서드를 사용하여 소문자로 변환할 수 있습니다.

예제 5: 유니코드 문자열

text = "안녕하세요"
lower_text = text.lower()
print(lower_text)

유니코드 문자열도 lower() 메서드를 사용하여 소문자로 변환할 수 있습니다.