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
- pandas
- C
- 채보
- Selenium
- Numpy
- C++
- mysql
- label
- Docker
- 핑거스타일
- 오류
- Python
- VS Code
- Visual Studio
- 프로그래머스
- Linux
- pip
- error
- C#
- ubuntu
- paramiko
- JSON
- windows forms
- 명령어
- YOLO
- SSH
- LIST
- OpenCV
- pytorch
- 기타 연주
Archives
- Today
- Total
목록remove (1)
기계는 거짓말하지 않는다
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
2022. 11. 18. 22:58