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
- 코스피
- 환율
- 나스닥
- 파이썬 랜덤 숫자
- 알림 봇
- 코스닥
- python bot
- 코스피 지수
- 나스탁
- 야후 파이낸스
- 국내주식
- 코스닥 지수
- 파이썬
- 주식
- 파이썬 로또 번호
- 파이썬 메시지
- 다우지수
- python excel
- Excel
- yahoo finace
- python xlrd
- line notify
- python directory
- python filelist
- OpenPyXL
- python
- python openpyxl
- 시가총액
- python xlwt
- 파이썬으로
Archives
- Today
- Total
keilab
파이썬으로 오늘 날짜, 현재 시간 출력하기 본문
파이썬으로 오늘 날짜를 출력해보겠습니다.
코드
라이브러리를 불러올 때 아래와 같이 import datetime 으로 불러오면 datetime을 두번써야 합니다.
import datetime
today=datetime.datetime.today()
print(today)
아래와 같이 from datetime import datetime으로 라이브러리를 불러오면 datetime.을 생략할 수 있다.
today()함수와 now()함수 실행 결과는 동일하므로 아무거나 선택해서 사용하면 된다.
from datetime import datetime
today=datetime.today()
#today=datetime.now()
print(today)
실행결과
datetime.datetime(2022, 7, 20, 9, 32, 26, 694705) # year, month, day, hour, minute, second, microsecond
실행결과는 datetime 클래스 속성으로 반환합니다.
- year : 연도
- month : 월
- day : 일
- hour : 시
- minute : 분
- second : 초
- microsecond : 마이크로초(백만분의 1초)
각 속성을 출력하고 싶은 경우에는 아래와 같이 코드를 사용한다.
코드
from datetime import datetime
today=datetime.today()
#today=datetime.now()
print(today)
print(today.year)
print(today.month)
print(today.day)
print(today.hour)
print(today.minute)
print(today.second)
print(today.microsecond)
실행결과
2022-07-20 09:59:21.626079
2022
7
20
9
59
21
626079
'Python' 카테고리의 다른 글
파이썬으로 미국 주식 정보 가져오기(야후 파이낸스 api) (2) | 2022.10.03 |
---|---|
파이썬으로 로또 번호 뽑기(랜덤 숫자) (0) | 2022.07.27 |
파이썬으로 LINE Notify 봇 만들기 1 (0) | 2021.11.21 |
현재 디렉터리에서 파일 목록 출력하기 (0) | 2018.08.09 |
파이썬으로 엑셀 다루기(xlwt 사용법) (0) | 2018.08.09 |