반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- 파이썬
- Redshift
- Mac
- array
- Google Spreadsheet
- Google Excel
- dataframe
- gas
- Excel
- hive
- list
- GIT
- numpy
- Kotlin
- SQL
- Java
- Apache
- Python
- google apps script
- math
- PySpark
- matplotlib
- django
- c#
- Tkinter
- string
- Github
- PANDAS
- PostgreSQL
Archives
- Today
- Total
달나라 노트
Python datetime : now(현재 날짜와 시간) & today(현재 날짜) 본문
Python/Python datetime
Python datetime : now(현재 날짜와 시간) & today(현재 날짜)
CosmosProject 2020. 12. 23. 02:46728x90
반응형
import datetime
current_dt = datetime.datetime.now()
print(current_dt)
- Result
2020-03-08 02:13:52.703621
datetime 모듈의 class중에서 datetime이라는 class가 존재합니다.
datetime class에 속한 now라는 moethod는 현재 local date와 time을 리턴합니다.
import datetime
current_dt = datetime.date.today()
print(current_dt)
- Result
2020-03-08
datetime 모듈의 class중에서 date라는 class가 존재합니다.
date class에 속한 today라는 moethod는 현재 local date를 리턴합니다.
728x90
반응형
'Python > Python datetime' 카테고리의 다른 글
Python datetime : strftime(시간 날짜 데이터를 텍스트로) & strptime(텍스트를 시간 날짜 데이터로) (0) | 2020.12.23 |
---|---|
Python datetime : timedelta(시간 또는 날짜의 차이) (0) | 2020.12.23 |
Python datetime : datetime class(날짜 + 시간 객체) (0) | 2020.12.23 |
Python datetime : time class(시간 객체) & hour, minute, second, microsecond(시간, 분, 초, 마이크로초 attribute) (0) | 2020.12.23 |
Python datetime : year, month, day (년, 월, 일 추출하기) (0) | 2020.12.23 |
Comments