반응형
파이썬 무작위로 년월일 만드는 함수¶
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년 %m월 %d일")
In [2]:
random_yeardate(), random_yeardate(), random_yeardate(), random_yeardate(), random_yeardate()
Out[2]:
('2021년 03월 06일', '2022년 06월 30일', '2012년 09월 18일', '2023년 08월 07일', '2016년 06월 27일')
반응형
'python' 카테고리의 다른 글
ModuleNotFoundError: No module named 'cv2' (0) | 2023.12.29 |
---|---|
맥북 jpg, png 파일 모두 찾아서 USB로 복사하기 (0) | 2023.12.12 |
파이썬 영문 원형복원 (spay VS nltk ) (0) | 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. (1) | 2023.12.07 |
ModuleNotFoundError: No module named 'nltk' (0) | 2023.12.07 |
댓글