Write a function that returns a generator. Use the yield statement. This function should have the following function prototype:
filter_and_transform(content, test_fn, transform=None)
This generator should process each item in a list as follows:
What you will learn: