Python으로 자동화 스크립트 만들기
2025-11-17 06:46
조회 8
댓글 3
<p>반복 작업을 자동화하는 Python 스크립트 예제입니다.</p><pre>import os
for file in os.listdir():
print(file)</pre>