Using the tuple and list comprehension within a for loop, print each string that contains the letter a code example
Example: list comprehension
# List comprehension
list_comp = [i+3 for i in range(20)]
# above code is similar to
for i in range(20):
print(i + 3)