본문 바로가기
ALGORITHM/SW Expert Academy

[SWEA/Python] 6220. 흐름과 제어 - If 3

by 안녕나는현서 2021. 7. 16.
728x90

📌 문제

https://swexpertacademy.com/main/main.do

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

📌 문제 접근 방법

  1. 소문자 판별 : 문자.islower()
  2. 대문자 판별 : 문자.isupper()

 

📌 코드

word = input()

if word.islower() :
    print('%s 는 소문자 입니다.'%(word))
elif word.isupper() :
    print('%s 는 대문자 입니다.'%(word))
728x90

댓글