Python - List Accessing Elements
================
horsemen = [“war”, “famine”, “pestilence”, “death”]
i = 0
while i < 4:
print(horsemen[i]) i = i + 1