In Python, creating a list is pretty simple. We just add a variable name, and then the values in between brackets and separated by commas.
There! We'll use lists often in algorithms.
Your code should resemble value = [ 5, 3, 2, 7].
value = [ 5, 3, 2, 7]