Review of for loops:
predict the behavior
for row in range(10):
print(row, end="\t")
print("#" * row)
cities = ["boise", "omaha", "tulsa", "utica"]
result = []
for city in cities:
result.append(city.upper())
print(result)
word = "onomatopoeia"
locs = []
for i in range(len(word)):
if word[i] in ('a', 'e', 'i', 'o', 'u'):
locs.append(i)
print("Locations:", locs)