python retrieve value from list code example
Example 1: get an item out of a list python
#to get the LAST item out of a list:
things = ["apple", "book", 3, ["another list", 85], "orange"]
last = things.pop()
print(last)
#it should output "orange"
Example 2: python get index and value from list
test = [ 'test 1', 'test 2', 'test 3' ]
for index, value in enumerate( test ):
print( index, value )
Example 3: how to call a specific element in a list python
print(cities[0][0], cities[1][0])
print(cities[0][1], cities[1][1])