반응형
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
- array
- hive
- Excel
- django
- 파이썬
- Python
- math
- Tkinter
- Github
- list
- Redshift
- PostgreSQL
- SQL
- PySpark
- Kotlin
- numpy
- google apps script
- Google Spreadsheet
- Apache
- Java
- matplotlib
- c#
- Google Excel
- dataframe
- string
- Mac
- PANDAS
- gas
- GIT
Archives
- Today
- Total
달나라 노트
Python datetime : fromtimestamp (Unix timestamp를 날짜로 변환하기) 본문
Python/Python datetime
Python datetime : fromtimestamp (Unix timestamp를 날짜로 변환하기)
CosmosProject 2020. 12. 23. 02:39728x90
반응형
import datetime
d = datetime.date.fromtimestamp(1583644364)
print(d)
- Result
2020-03-08
date 객체 생성 시 년, 월, 일을 받지 않고 fromtimestamp method를 사용하여 Unix timestamp를 날짜로 변환하여 얻을 수 있습니다.
Unix timestamp는 1970년 1월 1일(UTC)부터 몇 초가 흘렀는지를 나타내는 수치입니다.
728x90
반응형
'Python > Python datetime' 카테고리의 다른 글
Python datetime : now(현재 날짜와 시간) & today(현재 날짜) (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 |
Python datetime : date (숫자들을 조합하여 날짜 만들기) (0) | 2020.12.23 |
Comments