- 내가 쓴 답안
리스트 = ["A", "b", "c", "D"]
for str in 리스트:
if str.islower():
print(str)
# 출력화면
# b
# c
- 정답확인
리스트 = ["A", "b", "c", "D"]
for 변수 in 리스트:
if 변수.isupper() == False:
print(변수)
리스트 = ["A", "b", "c", "D"]
for 변수 in 리스트:
if 변수.isupper() != True:
print(변수)
리스트 = ["A", "b", "c", "D"]
for 변수 in 리스트:
if not 변수.isupper():
print(변수)
- islower() 함수를 몰라도 풀 수 있구나...!!!