파이썬/datetime 활용

python(vscode)/오늘 날짜 가져오기#1/datetime

gongdol 2022. 12. 28. 11:39
300x250

오늘 날짜를 가져와보자

최종목표는 오늘날짜가 22년 12월 28일이니 20221228 형식으로 가져오는 것이다. 

 

1. 코드작성 

  1) 코드는 아래와 같다. 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from datetime import datetime
 
today = datetime.today()            # 현재 날짜 가져오기
year = datetime.today().year        # 현재 연도 가져오기
month = datetime.today().month      # 현재 월 가져오기
day = datetime.today().day        # 현재 일 가져오기
hour = datetime.today().hour        # 현재 시간 가져오기
 
# 출력해보자
print("today = ",today)
print("year = ",year)
print("month = ",month)
print("day = ",day)
print("hour = ", hour)
print("\n"# 줄바꿈
 
#type 확인하기
print(type(today))
print(type(year))
print(type(month))
print(type(day))
print(type(hour))
print("\n"# 줄바꿈
 
#20221228 로 날짜표시하기(오늘날짜)
print(str(year)+str(month)+str(day))
 
 
cs

 

2. 결과확인

  1) 출력결과는 아래와 같다. 

300x250