정보처리기사 2022년 1회 77번
From IT Wiki
Revision as of 01:01, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
과목: 프로그래밍 언어 활용
문제[edit | edit source]
77. 다음 Python 프로그램이 실행되었을 때, 실행 결과는?
a=100
list_data=['a', ’b’, ’c’]
dict_data={'a':90, ’b’:95}
print (list_data[0])
print(dict_data['a'])
- ①
- ②
- ③
- ④
풀어보기[edit | edit source]
정답[edit | edit source]
- 1번