DrZhang Let's learn how to add values in a list. To add the value 25 to a list, we code the list name followed by period ., then the instruction append(25). >>> a_list = [1,2,3,4,5] >>> a_list.append(25) >>> a_list [1, 2, 3, 4, 5, 25]