분류 전체보기
[Python] os.listdir os.walk
https://toramko.tistory.com/entry/python-oslistdir%EA%B3%BC-oswalk-%ED%8C%8C%EC%9D%B4%EC%8D%AC-%ED%8A%B9%EC%A0%95-%EA%B2%BD%EB%A1%9C-%EB%82%B4-%EB%94%94%EB%A0%89%ED%86%A0%EB%A6%AC%EC%99%80-%ED%8C%8C%EC%9D%BC-%EA%B2%80%EC%83%89 python :: os.listdir과 os.walk (파이썬 특정 경로 내 디렉토리와 파일 검색) 다음과 같이 폴더와 파일을 생성해두었다. C:\test └ directory1 └ file4.txt └ file1.txt └ file2.txt └ file3.txt 1. os.listdir os.listdi..
[Python] 정규표현식 re 모듈
https://greeksharifa.github.io/%EC%A0%95%EA%B7%9C%ED%91%9C%ED%98%84%EC%8B%9D(re)/2018/07/20/regex-usage-01-basic/ Python, Machine & Deep Learning Python, Machine Learning & Deep Learning greeksharifa.github.io
[Python] sorted
https://blockdmask.tistory.com/466 [python] 파이썬 정렬 sorted 함수 정리 및 예제 안녕하세요. BlockDMask입니다. 오늘은 데이터를 정렬해주는 sorted 함수에 대해서 알아보려고 합니다. 혹시 리스트의 sort 함수를 생각하고 들어오신 분들은 [바로가기] 해당 포스팅에 리스트 정렬 so blockdmask.tistory.com
[Python] logging 모듈
https://greeksharifa.github.io/%ED%8C%8C%EC%9D%B4%EC%8D%AC/2019/12/13/logging/ Python, Machine & Deep Learning Python, Machine Learning & Deep Learning greeksharifa.github.io https://velog.io/@devmin/first-python-logging 처음 접한 파이썬 로깅(logging) 프린트 말고 로그! velog.io
[Python] argparse
https://greeksharifa.github.io/references/2019/02/12/argparse-usage/ Python, Machine & Deep Learning Python, Machine Learning & Deep Learning greeksharifa.github.io
[Python] if __name__ == '__main__':
__name__ : 모듈의 이름이 저장되는 변수 - import로 모듈을 가져왔을 때, __name__에 모듈의 이름이 들어감 - 파이썬 인터프리터로 스크립트 파일을 직접 실행했을 때, __name__에 __main__이 들어감 현재 스크립트 파일이 프로그램의 시작점이 맞는지 판단하는 작업 즉, 스크립트 파일이 메인 프로그램으로 사용될 때와 모듈로 사용될 때를 구분하기 위한 용도 https://dojang.io/mod/page/view.php?id=2448 파이썬 코딩 도장: 45.2 모듈과 시작점 알아보기 인터넷에 있는 파이썬 코드를 보다 보면 if __name__ == '__main__':으로 시작하는 부분을 자주 만나게 됩니다. if __name__ == '__main__': 코드 도대체 이 코드는..