일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- leetcode 121
- 올바른 변수명 짓기
- MapReduce 실습
- Hadoop
- Hortonworks Sandbox
- 스파크 완벽 가이드
- leetcode 238
- 빅데이터를 지탱하는 기술
- webcrawler
- 데이터레이크와 데이터웨어하우스
- leetcode 234
- 블로그 이전했어요
- leetcode125
- leetcode 344
- leetcode 5
- airflow docker
- wargame.kr
- 배열
- docker로 airflow 설치하기
- leetcode 15
- leetcode
- 컴퓨터구조
- 문자열 조작
- ctf-d
- leetcode 561
- 머신러닝
- leetcode 49
- leetcode 819
- Python
- leetcode 937
Archives
- Today
- Total
목록리스트함수 (1)
HyeM
[Python]리스트 함수
>>> x=[1,2,3] >>> x.append(4) >>> x [1, 2, 3, 4] >>> x.append([5,6,7,8,9,10]) >>> x [1, 2, 3, 4, [5, 6, 7, 8, 9, 10]] append : 리스트의 마지막에 인자값을 추가한다. 어떤 자료형도 추가 가능하다.(리스트도 가능) >>> x=[4,3,5,1,2] >>> x.sort() >>> x [1, 2, 3, 4, 5] >>> >>> x=['a','c','e','f','b'] >>> x.sort() >>> x ['a', 'b', 'c', 'e', 'f'] sort : 리스트 정렬함수 - 숫자면 오름차순 정렬 - 알파벳은 알파벳 순서로 정렬 (a, b, c ...) >>> x=['a','c','b','e','d'] >>> ..
Programming/Python
2020. 4. 12. 17:26