python_list_remove.py:
x
 
thislist = ["apple", "banana", "cherry"]
thislist.remove("banana")
print(thislist)