전체 글544 맥북 jpg, png 파일 모두 찾아서 USB로 복사하기 맥북 jpg, png 파일 모두 찾아서 USB로 복사하기 import os import shutil # 원본 파일이 있는 폴더와 대상 폴더 경로 설정 대상_폴더 = '/Volumes/{usb_이름}' if not os.path.exists(대상_폴더): os.makedirs(대상_폴더) # 현재 경로에 하위폴더를 모두 검색하는 메서드 "os.walk" # 폴더 경로, 하위폴더, 파일들 순으로 return 파일들 = os.walk("/Users/{user_name}") for 폴더_경로, 하위폴더, 파일들 in 파일들: for 파일 in 파일들: if 파일.endswith('.jpg') or 파일.endswith('.png'): 원본_파일_경로 = os.path.join(폴더_경로, 파일) 대상_파일_경로.. 2023. 12. 12. 파이썬 무작위로 년월일 만드는 함수 파이썬 무작위로 년월일 만드는 함수¶ In [1]: import random from datetime import datetime, timedelta def random_yeardate(): # 시작 날짜와 종료 날짜 설정 (원하는 범위 내에서 날짜를 생성할 수 있도록) start_date = datetime(2000, 1, 1) end_date = datetime(2023, 12, 31) # 시작 날짜와 종료 날짜 사이에서 랜덤한 날짜 생성 random_days = random.randint(0, (end_date - start_date).days) random_date = start_date + timedelta(days=random_days) return random_date.strftime("%Y.. 2023. 12. 12. 파이썬 영문 원형복원 (spay VS nltk ) 영문 원형복원 (spay "en_core_web_sm" VS nltk)¶ 예시 문장 만들기¶ In [1]: sentences = [ "the biggest apple in many apples sold best !", "The talented musician played a beautiful melody yesterday.", "Dancing in the rain is my favorite activity.", "I enjoy swimming in the ocean during the summer.", "I was working late at the office last night." ] sentences[0] Out[1]: 'the biggest apple in many apples sold b.. 2023. 12. 10. 비주얼스튜디오코드 글자 크기 키우기 비주얼스튜디오코드 글자 크기 키우기 아래 영상을 참고해주세요 !!! 2023. 12. 10. OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory. OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory. 위와 같은 에러가 뜨면 아래 코드를 설치해보세요. python -m spacy download en # or python3 -m spacy download en 2023. 12. 7. ModuleNotFoundError: No module named 'nltk' ModuleNotFoundError: No module named 'nltk' pip install 을 이용하여 nltk 를 설치 해도 ModuleNotFoundError: No module named 'nltk' 와 같은 에러가 뜨면, 아래 코드를 이용하여 설치해보세요 pip3 install nltk 아래와 같이 설치 되면서, nltk 모듈이 잘 실행되었습니다 ! 2023. 12. 7. 이전 1 ··· 18 19 20 21 22 23 24 ··· 91 다음