If the character at index 0 of the current item is the letter "a", continue to the next one. Otherwise, print out the current member.
Example: ["abc", "xyz"] will just print "xyz".
def loopy(items):
for item in items:
if item[0] == "a":
continue
else:
print(items)
print(items) -> print(item)