Skip to content

Commit 3e2345f

Browse files
committed
240702 정보처리기사 실기 - Python (2023-2회 19번)
1 parent dbebfd5 commit 3e2345f

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

EIP/Python/README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,21 @@
150150
print(a)
151151
```
152152

153-
- [] {'중국','한국','베트남','홍콩','태국'} (순서 상관없이 요소 5개 빠짐없이 들어가면 됨)
153+
- [] {'중국','한국','베트남','홍콩','태국'} (순서 상관없이 요소 5개 빠짐없이 들어가면 됨)
154+
155+
156+
157+
#### 2023년 2회 [1개 출제]
158+
159+
- 문제19. 다음 Python으로 구현된 프로그램을 분석하여 그 실행 결과를 쓰시오. (단 출력문의 출력 서식을 준수하시오)
160+
161+
```python
162+
a = "engineer information processing"
163+
b = a[:3]
164+
c = a[4:6]
165+
d = a[28:]
166+
e=b+c+d
167+
print(e)
168+
```
169+
170+
- [] engneing

0 commit comments

Comments
 (0)