정보처리기사 2022년 2회 65번
From IT Wiki
과목: 프로그래밍 언어 활용
문제[edit | edit source]
65. 다음 Python 프로그램의 실행 결과가 [실행결과]와 같을 때, 빈칸에 적합한 것은?
x=20
if x==10:
print('10')
( ) x==20:
print('20')
else:
print('other')
실행결과: 20
- ① either
- ② elif
- ③ else if
- ④ else
풀어보기[edit | edit source]
정답[edit | edit source]
- 2번