Use the below code to insert the item into the end of the List,
list = ["Red", "Blue", "Green", "White","Yellow"]
list.append("Gray")
print(list)
Output:
['Red', 'Blue', 'Green', 'White', 'Yellow', 'Gray']
python insert into end