👉 기본 환경
- 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에 존재하는 요소를 삭제
'Python > Python with Error' 카테고리의 다른 글
[해결 방법] TypeError: list indices must be integers or slices, not str (0) | 2023.08.14 |
---|---|
[해결 방법] TypeError: list.count() takes exactly one argument (0) | 2023.08.13 |
[해결 방법] TypeError: 'int' object is not iterable (0) | 2023.08.13 |
[해결 방법] IndexError: list index out of range (0) | 2023.08.13 |
[해결 방법] AttributeError: 'list' object has no attribute 'len' (0) | 2023.08.13 |