156


  • 내가 쓴 답
리스트 = ("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() 함수를 몰라도 풀 수 있다…!!!