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
- 명령어
- error
- Selenium
- C
- Numpy
- C++
- 기타 연주
- ubuntu
- pytorch
- pandas
- LIST
- OpenCV
- mysql
- 핑거스타일
- VS Code
- 채보
- paramiko
- Docker
- pip
- 오류
- YOLO
- Visual Studio
- 프로그래머스
- Python
- windows forms
- JSON
- Linux
- label
- C#
- SSH
Archives
- Today
- Total
기계는 거짓말하지 않는다
List remove 반복 활용 없이 필요한 값만 남기고 제거 본문
리스트 내포(List comprehension)와 조건문을 이용하여 필요한 값만 남긴다.
아래와 같이 활용할 수 있다.
name_dict = {i:1 for i in range(0, 10, 2)}
print("necessary value:", list(name_dict.keys()))
origin_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
print("origin value:", origin_list)
origin_list = [i for i in origin_list if i in name_dict]
print("removed value:", origin_list)
'Python' 카테고리의 다른 글
Python OpenCV imread, imwrite 한글 문제 (0) | 2022.11.25 |
---|---|
Python String 문자 수정(Modify) (0) | 2022.11.25 |
OpenCV video read 시 프레임 회전 문제 (0) | 2022.11.04 |
Python 디렉터리 내 파일 경로 텍스트 저장 (0) | 2022.10.30 |
Python 리스트 내포(List Comprehension) (1) | 2022.09.19 |
Comments