반응형
Q>
1. 어떤 사람의 주민번호가 870111-2022214일 때, 이 사람의 생년월일을 출력하는 프로그램을 작성하여 소스코드와 실행 결과를 제시하시오.
2. 단, 결과를 출력할 때는 문자열의 format 함수를 사용하세요.
A>
rrn = '870111-2022214'
year = rrn[:2]
month = rrn[2:4]
day = rrn[4:6]
print('당신의 생일은 {}년 {}월 {}일 입니다.'.format(year, month, day))
O>
당신의 생일은 80년 10월 23일 입니다.
Process finished with exit code 0
반응형
'Python_Matter > Solve' 카테고리의 다른 글
Python Learn the basics Quiz 6 (0) | 2019.03.16 |
---|---|
Python Learn the basics Quiz 5 (0) | 2019.03.16 |
Python Learn the basics Quiz 4 (0) | 2019.03.16 |
Python Learn the basics Quiz 2 (0) | 2019.03.16 |
Python Learn the basics Quiz 1 (0) | 2019.03.16 |