일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- Cannon PowerShot G7 X Mark III
- 탐조
- 외생균근균
- 곤줄박이
- 토양학
- 영화
- 더 웨일
- 심리학
- 영화 해석
- 바운새
- 둠칫새
- mushroom #mushrooms #mushroomhunting #mushroomphotos #mushroomphotography #mycology #mycologist #fungi #fungalecology #fungaldiversity #fantasticfungi #버섯 #탐균 #버섯탐사
- 영화 후기
- Rstuido
- 생물정보학
- 파이썬
- 대학원생
- 청도요
- 토양미생물학
- 계묘년
- 철학
- 에리히 프롬
- 영화 일기
- RStudio
- 코딩
- 갓생
- 생명과학 균학 미생물학 Biology Mycology Microbiology
- 젖비단그물버섯
- R
- 영화 리뷰
- Today
- Total
목록파이썬 (2)
워라밸 중독자

아래 코드를 이용해 strings.txt에 있는 문자열 목록을 포함하는 모든 파일을 찾아 다른 폴더로 복사할수 있습니다. extension 변수를 통해 특정 확장자를 지정할 수도 있습니다. strings.txt 에 포함되었으나 파일들에 없는 문자열은 not_matched_strings.txt 에 저장됩니다. 이를 통해 검색되지 않은 문자열이 무엇인지 tracking 할 수도 있습니다. import os import shutil # list of strings to match in file names with open('strings.txt', 'r') as f: strings = [line.strip() for line in f] # extension of files to be copied extensi..

https://github.com/nadermx/backgroundremover GitHub - nadermx/backgroundremover: Background Remover lets you Remove Background from images and video with a simple command liBackground Remover lets you Remove Background from images and video with a simple command line interface that is free and open source. - GitHub - nadermx/backgroundremover: Background Remover lets ...github.com일단 파이썬이 깔려있어야 사..