[Python] datetime 모듈 사용해보기Study Code/[Basic] Python2024. 5. 6. 02:00
Table of Contents
import datetime
today = datetime.datetime.today()
age = input('나이: ')
if age.isdigit():
afterYear = 100 - int(age)
beHundred = today.year + afterYear
print('{}년 ({}년 후에) 100살이 됩니다.'.format(beHundred, afterYear))
else:
print('잘못된 입력입니다.')
* 이 글은 제로베이스 데이터 스쿨의 강의 자료 일부를 발췌하여 작성되었습니다.
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!