728x90
now_list = [1, 2, 3, 4, 5, 6, 7]
except_list = [1, 2, 3, 4]
new_list = list(filter(lambda l: l not in except_list, now_list))
print(new_list) # [5, 6, 7]
now_list에서 except_list에 있는 값을 제거 후 새로운 new_list를 만든다.
728x90
'파이썬' 카테고리의 다른 글
dj_rest_auth registration custom user(account) 회원가입 (0) | 2023.05.22 |
---|---|
문자열 원하는 길이로 자르기 (0) | 2023.05.15 |
셀레니움 크롬 드라이버 이용하여 실행 파일 만들 때 tqdm 오류 (0) | 2023.03.21 |
pyside6 에서 QUiLoader 로 ui 불러와서 사용할 때 이벤트 동작 안될 때 (0) | 2023.03.02 |
파이썬 os.system 명령어 쓸 때 dos, cmd 창 않나오게 하기 (0) | 2023.02.23 |