반응형
참조 사이트
https://wangin9.tistory.com/entry/datetime
import datetime as dt
# string을 날짜 datetime.date로 변경
buydatetime = dt.datetime.strptime("2018-01-30", "%Y-%m-%d")
buydate = buydatetime.date()
print(type(buydate))
print(buydate)
# 날짜 계산 365일 후
selldate = buydate + dt.timedelta(days=365)
print(type(selldate))
print(selldate)
# datetime.date를 string으로 변환
selldate_str = selldate.strftime("%Y-%m-%d")
print(type(selldate_str))
print(selldate_str)
C:\Anaconda3\python.exe D:/02_Python/01_workspace/backtrader-master/backtrader-master/samples/ykdtest/test6.py --foo 1 2
<class 'datetime.date'>
2018-01-30
<class 'datetime.date'>
2019-01-30
<class 'str'>
2019-01-30
반응형
'Language > python' 카테고리의 다른 글
python 주식 관련 사이트 (0) | 2021.04.28 |
---|---|
[ Python django ] progress bar (0) | 2020.01.18 |
[ Python backtrader ] backtrader 참고 사이트 (0) | 2020.01.14 |
[ Python backtrader ] potfolio value 및 cash 그래프만 그리기 (0) | 2020.01.14 |
[ Python backtrader ] plot option (0) | 2020.01.14 |