728x90 lower()1 코딩 테스트 대소문자 바꿔서 출력하기/ Python + 추가 문제, 설명 str = input()str = str.swapcase() # str.swapcase() = 대문자 -> 소문자/ 소문자 -> 대문자print(str) str.___()str.upper(): 문자열을 모두 대문자로 변환text = "hello"print(text.upper()) # 출력: "HELLO"str.lower(): 문자열을 모두 소문자로 변환text = "HELLO"print(text.lower()) # 출력: "hello" 추가 문제입력: aBcd를 출력: Abcd로 변환하기첫 번째 글자는 대문자로, 나머지 글자는 소문자로 변환하는 문제str = input()def convert_string(str): result = str[0].upper() + str[1:].lower() .. 2024. 7. 8. 이전 1 다음 728x90