본문 바로가기
Python/Python with Error

[해결 방법] ValueError: list.remove(x): x not in list

by HJ0216 2023. 8. 13.

👉 기본 환경

- Language: Python

- IDE: Replit

 

 

⌨️ 코드

1
2
3
list = ["do""re""mi"];
list.remove("pa");
 
 

 

 

🖨️오류

ValueError: list.remove(x): x not in list

 

 

📡 원인

list에 없는 요소를 삭제하려고 함

 

 

📰 해결 방법

1
2
3
list = ["do""re""mi"];
list.remove("mi");
 
 

list에 존재하는 요소를 삭제