65. 다음 Python 프로그램의 실행 결과가 [실행결과]와 같을 때, 빈칸에 적합한 것은?
x=20
if x==10:
print('10')
( ) x==20:
print('20')
else:
print('other')
실행결과: 20
- 1either

- 2elif

- 3else if

- 4else

x=20
if x==10:
print('10')
( ) x==20:
print('20')
else:
print('other')
실행결과: 20



