배열에서 특정 원소 제거하기(python)

이태혁·2020년 10월 3일
0
a = [1, 2, 3, 4, 5, 5, 5]
remove_set = {3, 5}

print([i for i in a if i not in remove_set])
profile
back-end, cloud, docker, web의 관심이 있는 예비개발자입니다.

0개의 댓글