Files
TencentOS-tiny/components/language/micropython/tests/basics/list_remove.py
2022-09-29 12:10:37 +08:00

10 lines
172 B
Python

a = [1, 2, 3]
print(a.remove(2))
print(a)
try:
a.remove(2)
except ValueError:
print("Raised ValueError")
else:
raise AssertionError("Did not raise ValueError")