Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Make sure the Cursor is initialized correctly before accessing data for it.
- 페니빙
- cmd2
- 포너블
- python
- tlqkf
- SQLiteConstraintException
- 코틀린
- Couldn't read row 0
- 10814
- 블록체인
- 애너그램 그룹
- pwnable.kr
- pwnable
- 6566
- col -1 from CursorWindow
- 쏘큩
- java.lang.IllegalStateException
- 클라우드란?
- 백준
- 나이순 정렬
- UNIQUE constraint failed
- cmd1
- Docker
- Drive-By-Download
- pwable.kr
- 파이썬
- 액션바 필요없숴
- kotlin
- 클라우드가 뭐야
Archives
- Today
- Total
목록10814 (1)
푸르미르
[python]10814.나이순 정렬
이 문제를 풀다가 알게된 새로운 사실이 있어서 글을 쓰게 되었다. 1 2 3 4 5 6 7 8 n=int(input()) member=[] for i in range(n): age, name=map(str, input().split()) member.append(tuple(int(age), name())) member.sort(key=lambda x: x[0]) for age, name in member: print(age, name) cs 회원의 나이와 이름을 tuple constructor로 묶어 member라는 리스트에 append했는데 오류가 났다. TypeError: tuple expected at most 1 argument, got 2 tuple생성자는 1개의 argument를 받는데 2개를..
Baekjoon Online Judge
2021. 2. 3. 21:56