Python mengubah item kedua

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