Consecutively accessing elements (2)

With a for loop (which is much shorter):

aList = ["New York", "Amsterdam", "Paris", "Rome"]

for i in aList:
  print i

prints:

New York
Amsterdam
Paris
Rome