BOJ
오늘의 날짜(년-월-일)
Coding_SJ
2020. 3. 16. 15:36
1
2
3
4
|
import datetime
now = datetime.datetime.now()
nowDate = now.strftime('%Y-%m-%d')
print(nowDate)
|
cs |