summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/list_remove.py
blob: 81b2b3d973c397122e90ca3bac9252eb4e00b16d (plain) (blame)
1
2
3
4
5
6
7
8
9
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")