파이썬 실행시 오류 발생
전체 코드:
fruits=['사과','배','배','감','수박','귤','딸기','사과','배','수박'] count = 0 for aaa in fruits: if aaa == '배': count += 1 print(count)
에러메시지
count += 1
^
IndentationError: unindent does not match any outer indentation level