79. 다음은 파이썬으로 만들어진 반복문 코드이다. 이 코드의 결과는?
>> while(True) : print('A') print(’B‘) print(’C‘) continue print(’D‘)
- ①A, B, C 출력이 반복된다.
- ②A, B, C
- ③A, B, C, D 출력이 반복된다.
- ④A, B, C, D 까지만 출력된다.
>> while(True) : print('A') print(’B‘) print(’C‘) continue print(’D‘)