Python에서 datetime 모듈을 이용하여 현재 날짜 및 시간을 가져올 수 있습니다. 또한, NewYork과 같은 어떤 지역의 시간을 가져올 수 있습니다.
현재 날짜, 시간 가져오기
다음과 같이 datetime 모듈을 이용하여 현재 시간을 가져올 수 있습니다.
from datetime import datetime
current_time = datetime.now()
print(current_time)
Output:
2021-01-02 22:41:10.181347
원하는 format으로 시간 출력
다음과 같이 strftime()
을 이용하여 원하는 형태로 시간을 출력할 수 있습니다.
from datetime import datetime
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
print(current_time)
Output:
22:41:10
현재 시간 가져오기
날짜는 필요없고, 시간만 필요하다면 now().time()
으로 시간 정보만 가져올 수 있습니다.
from datetime import datetime
current_time = datetime.now().time()
print(current_time)
Output:
22:57:11.070602
year, month, day 정보 가져오기
datetime 객체는 year
, month
, day
등의 변수를 갖고 있습니다. 이것으로 특정한 날짜, 시간 정보를 가져올 수 있습니다.
from datetime import datetime
current_time = datetime.now()
print(current_time)
print(f'Year : {current_time.year}')
print(f'Month : {current_time.month}')
print(f'Day : {current_time.day}')
print(f'Hour : {current_time.hour}')
print(f'Minute : {current_time.minute}')
print(f'Second : {current_time.second}')
Output:
2021-01-02 22:41:10.181418
Year : 2021
Month : 1
Day : 2
Hour : 22
Minute : 41
Second : 10
NewYork의 시간 정보 가져오기
다음과 같이 pytz 모듈을 이용하여 특정 지역의 Timezone 정보를 가져올 수 있습니다.
datetime.now()
에 Timezone을 인자로 전달하면 해당 지역의 시간이 리턴됩니다.
리턴된 datetime 객체에서 필요한 시간 정보를 가져오면 됩니다.
from datetime import datetime
import pytz
tz = pytz.timezone('America/New_York')
cur_time = datetime.now(tz)
simple_cur_time = cur_time.strftime("%H:%M:%S")
print(f'NY time: {cur_time}')
print(f'NY time: {simple_cur_time}')
Output:
NY time: 2021-01-02 08:41:10.200024-05:00
NY time: 08:41:10
Timezone을 가져올 때 사용되는 String
`'America/New_York'와 같이, Timezone을 가져올 때 사용되는 문자열은 GitHub - heyalexej에 소개되어있습니다. 이 내용을 참고하시면 좋을 것 같습니다.
Africa/Abidjan
Africa/Accra
Africa/Addis_Ababa
Africa/Algiers
Africa/Asmara
Africa/Asmera
Africa/Bamako
Africa/Bangui
Africa/Banjul
....
Loading script...
Related Posts
- Python - Yaml 파일 파싱하는 방법
- Python - 파일 내용 삭제
- Python - for문에서 리스트 순회 중 요소 값 제거
- Python - 두 리스트에서 공통 요소 값 찾기
- Python - 문자열 앞(뒤)에 0으로 채우기
- Python - 공백으로 문자열 분리
- Python - 중첩 리스트 평탄화(1차원 리스트 변환)
- Python - 16진수 문자열을 Int로 변환
- Python - 두 날짜, 시간 비교
- Python f-string으로 변수 이름, 값 쉽게 출력 (변수명 = )
- Python - nonlocal과 global 사용 방법
- Python 바다코끼리 연산자 := 알아보기
- Python - pip와 requirements.txt로 패키지 관리
- Python - 딕셔너리 보기 좋게 출력 (pprint)
- Python - Requests 사용 방법 (GET/POST/PUT/PATCH/DELETE)
- Python - 온라인 컴파일러 사이트 추천
- Python - os.walk()를 사용하여 디렉토리, 파일 탐색
- Python - 문자열 비교 방법
- Python - Text 파일 읽고 쓰는 방법 (read, write, append)
- Python - 리스트에서 첫번째, 마지막 요소 가져오는 방법
- Python - 두개의 리스트 하나로 합치기
- Python - 리스트의 마지막 요소 제거
- Python - 리스트의 첫번째 요소 제거
- Python 소수점 버림, 4가지 방법
- Python 코드 안에서 버전 확인 방법
- Python 소수점 반올림, round() 예제
- Python - 리스트 평균 구하기, 3가지 방법
- Python - bytes를 String으로 변환하는 방법
- Python - String을 bytes로 변환하는 방법
- Python 버전 확인 방법 (터미널, cmd 명령어)
- Python - 람다(Lambda) 함수 사용 방법
- Python - dict 정렬 (Key, Value로 sorting)
- Python - range() 사용 방법 및 예제
- Python - 리스트를 문자열로 변환
- Python - 문자를 숫자로 변환 (String to Integer, Float)