To add the value 25 to a list, we code the list name followed by a period ., then the instruction append(25).
25
.
append(25)
Make sure to pick append followed by ( and then 25, ).
append
(
)