본문 바로가기
PROGRAMMING CODE/PYTHON

[BAEKJOON] No.10699 Python

by daye_ 2023. 1. 27.

 

https://www.acmicpc.net/problem/10699

 

10699번: 오늘 날짜

서울의 오늘 날짜를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

import datetime
now = datetime.datetime.now()
print(now.strftime('%Y-%m-%d'))

'PROGRAMMING CODE > PYTHON' 카테고리의 다른 글

[BAEKJOON] No.5355 Python  (0) 2023.02.07
[BAEKJOON] No.2914 Python  (0) 2023.02.06
[BAEKJOON] No.2163 Python  (0) 2023.01.27
[BAEKJOON] No.3046 Python  (0) 2023.01.27
[BAEKJOON] No.10986 Python  (0) 2023.01.25