728x90 디렉토리 파일이름1 [Python Examples] os.walk() os.walk() 포스트 난이도: HOO_Junior [Notice] 포스트 난이도에 대한 설명 안녕하세요, HOOAI의 Henry입니다. Bro들의 질문에 대한 내용을 우선적으로 포스팅이 되다 보니 각각의 포스트에 대한 난이도가 달라서 난이도에 대한 부분을 작성하면 좋겠다는 의견을 들었습니다 whoishoo.tistory.com # os.walk() Example import os for root, dirs, files in os.walk(".", topdown=True): for name in files: print(os.path.join(root, name)) for name in dirs: print(os.path.join(root, name)) # Explanation import os는 os... 2022. 7. 3. 이전 1 다음 728x90