Akhil Narayanan Nair home

Python - List Remove

================

n = [1, 3, 5]

print(n)

n.remove(3)

print(n)