Solution Review: Appending Value to the End of a List
This lesson will give you a detailed review of how to append values at the end of a list.
We'll cover the following...
Solution 1: Use the append()
Function
This solution is very simple and perhaps the more commonly used method in Python. You simply call the append
...