728x90
📌 문제
https://swexpertacademy.com/main/main.do
📌 문제 접근 방법
- 소문자 판별 : 문자.islower()
- 대문자 판별 : 문자.isupper()
📌 코드
word = input()
if word.islower() :
print('%s 는 소문자 입니다.'%(word))
elif word.isupper() :
print('%s 는 대문자 입니다.'%(word))
728x90
'ALGORITHM > SW Expert Academy' 카테고리의 다른 글
[SWEA/Python] 6319. 함수의 기초 1 (0) | 2021.07.22 |
---|---|
[SWEA/Python] 2063. 중간값 찾기 (0) | 2021.07.21 |
[SWEA/Python] 6247. 흐름과 제어 - 반복 9 (0) | 2021.07.16 |
[SWEA/Python] 6222. 흐름과 제어 - If 5 (0) | 2021.07.16 |
[SWEA/Python] 6221. 흐름과 제어 - If 4 (0) | 2021.07.16 |
댓글