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 |
Tags
- 티스토리
- Tistory
- 텐서플로
- Google Analytics
- 파이썬 시각화
- 시각화
- Ga
- Python
- Linux
- 매틀랩
- 한빛미디어
- tensorflow
- Pandas
- MATLAB
- SQL
- 딥러닝
- 독후감
- 월간결산
- 블로그
- Visualization
- 서평단
- matplotlib
- Blog
- 서평
- 리눅스
- 한빛미디어서평단
- 파이썬
- python visualization
- 통계학
- MySQL
Archives
- Today
- Total
목록python arrow (1)
pbj0812의 코딩 일기
[PYTHON] arrow 라이브러리 소개(시간/날짜)
0. 목표 - arrow 라이브러리 소개 1. 실습하기 1) 설치 pip install -U arrow 2) library 호출 import arrow 3) arrow 형태 객체 얻기 a = arrow.get('2013-05-11T21:23:58.970460+07:00') print(a) print(type(a)) - 결과 2013-05-11T21:23:58.970460+07:00 4) 지금시간 얻기(UTC 기준) utc = arrow.utcnow() print(utc) - 결과 2020-12-06T14:25:21.215593+00:00 5) 시간 조정하기 utc2 = utc.shift(hours=-1) print(utc2) - 결과 2020-12-06T13:29:06.976277+00:00 6) 타임존..
ComputerLanguage_Program/PYTHON
2020. 12. 6. 23:41