With a while loop:
while
aList = ["New York", "Amsterdam", "Paris", "Rome"] i = 0 while i < len(aList): print aList[i] i = i+1
prints:
New York Amsterdam Paris Rome