▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/to-lower-case/ To Lower Case - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문자열 s가 주어진다. 대문자가 있다면 모두 소문자로 바꾸어 반환하는 문제. class Solution: def toLowerCase(self, s: str) -> str: answer = "" for i in s: if i.isupper(): answer += i.lower()..