Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 파이썬
- 더현대서울 맛집
- hackerrank
- ChatGPT
- 코로나19
- PYTHON
- 프로그래머스 파이썬
- ubuntu
- 데이콘
- dacon
- 캐치카페
- SW Expert Academy
- 프로그래머스
- Docker
- 백준
- gs25
- Real or Not? NLP with Disaster Tweets
- 우분투
- Git
- 맥북
- leetcode
- Baekjoon
- AI 경진대회
- 편스토랑 우승상품
- 편스토랑
- 자연어처리
- programmers
- github
- 금융문자분석경진대회
- Kaggle
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 2744번 : 대소문자 바꾸기 (Python) 본문
728x90
반응형
코딩 1일 1문제 오늘의 문제는 백준의 대소문자 바꾸기 입니다.
Solution
def change_lower_upper(string):
new_string = []
for char in string:
if char.isupper():
new_string.append(char.lower())
elif char.islower():
new_string.append(char.upper())
return "".join(new_string)
if __name__ == "__main__":
string = input()
print(change_lower_upper(string))
Solution 풀이
입력받은 문자열의 단어를 하나하나 보면서
islower() == True 일 경우 upper()로 대문자로
isupper() == True 일 경우 lower()로 소문자로 바꾸어주면 끝!
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 4999번 : 아! (Python) (0) | 2021.06.30 |
---|---|
[BaekJoon] 2495번 : 연속구간 (Python) (0) | 2021.06.29 |
[BaekJoon] 5218번 : 알파벳 거리 (Python) (0) | 2021.06.27 |
[BaekJoon] 10987번 : 모음의 개수 (Python) (0) | 2021.06.26 |
[BaekJoon] 6321번 : IBM 빼기 1 (Python) (0) | 2021.06.24 |
Comments