Python - Ubah item daftar

thislist = ["apple", "banana", "cherry"]
thislist[1] = "blackcurrant"
print(thislist)
SAMER SAEID