일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 셀레니움
- NLP
- Merge Repositories
- 괄호 문제
- geoDataFrame
- 크롤링
- 코랩 런타임
- to shp
- plotly dash
- 혁신성장부문
- clustering
- 인스타그램
- Chat-GPT
- colab runtime
- 2164 카드2
- Crawling
- python buildpacks
- 파이썬
- geopandas
- flask
- Selenium
- 백준
- 해시태그
- convert to shp
- kmeans
- 웹페이지
- 알고리즘
- 플라스크
- Python
- string to list
Archives
- Today
- Total
코딩코딩코딩
파이썬 datetime 분으로 변경 (convert to minutes) 본문
x = 2021.09.11 00:02
y = 2021.09.11 00:00
type(x) >>> str
datetime 형식으로 되어있지만 문자열인 경우
from datetime import datetime
converted_x = datetime.strptime(x, "%Y.%m.%d %H:%M")
converted_y = datetime.strptime(y, "%Y.%m.%d %H:%M")
converted_x >>> 2021-09-11 00:02:00
형태로 변환됨.
xy = converted_x - converted_y
xy >>> Timedelta('0 days 00:02:00')
xy.seconds
>>> 120
Timedelta의 seconds를 구한 후에 몫, 나머지 혹은 나누기 연산자를 사용하여 분으로 변환 가능
'파이썬 > 문법' 카테고리의 다른 글
python warnings filterwarnings (파이썬 경고문구 제거) (0) | 2021.12.29 |
---|---|
파이썬 python matplotlib 한글 폰트(font) 맥(mac) (0) | 2021.12.29 |
파이썬 sys.stdin.readline() 개행문자 (newline, EOL) 처리 (0) | 2021.12.27 |
python AST ast.literal_eval (딕셔너리 형태의 문자열을 딕셔너리로 변경) (0) | 2021.07.03 |
파이썬 문자열 배열로 반환 (python string to list) (0) | 2021.04.26 |
Comments