Let L be a list of strings. Write list comprehensions that create new lists from L code example
Example 1: list comprehension
[expr for val1 in collection1 and val2 collection2 if(condition)]
Example 2: list comprehension
[expression for item in list]