import datetime as dt
strdate='2024.1.5'
curdt= dt.datetime.strptime(strdate,'%Y.%m.%d')
curdt
주의 날짜 뒤에 마침표 들어가면 strptime 의 마지막 인자에도 마침표 들어가게.
함수로 만들기
def dot2hyphen(dotdate):
hypendate= dt.datetime.strptime(dotdate,'%Y.%m.%d')
return hypendate
날짜를 yyyy-mm-dd 형식 문자열로 만들기
a=dt.date.strftime(curdt,"%Y-%m-%d")
print(type(a))
print(a)
댓글 없음:
댓글 쓰기