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
- wargame
- C
- Python
- CTF
- Web Hacking
- cryptography
- 구현
- misc
- 인코그니토
- Network
- Text
- 백준
- Database
- 사칙연산
- writeup
- 그리디 알고리즘
- MySQL
- Forensics
- HackCTF
- php
- 문자열
- Web
- xcz.kr
- Incognito
- Digital Forensics
- SuNiNaTas
- 수학
- 써니나타스
- N0Named
- 정렬
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10814번 나이순 정렬 본문
[Baekjoon/Python3] 10814번 나이순 정렬
n = int(input())
members = []
for i in range(n):
age, name = map(str, input().split())
age = int(age)
members.append((age, name))
members.sort(key = lambda member: (member[0])) # sort(key), ()
for member in members:
print(member[0], member[1])
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10818번 최소, 최대 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10817번 세 수 (0) | 2020.12.06 |
[Baekjoon/Python3] 10813번 공 바꾸기 (0) | 2020.12.06 |
[Baekjoon/Python3] 10809번 알파벳 찾기 (0) | 2020.12.06 |
[Baekjoon/Python3] 10808번 알파벳 개수 (0) | 2020.12.06 |
Comments