This lecture covers List, Set and Dictionary Comprehension.
It contains five example cases:
1) List Comprehension to produce a list of squares of elements within another list.
2) Set Comprehension to produce a set of even numbers from a given range.
3) Set Comprehension to add elements from a list to a set only if number is even.
4) Dictionary Comprehension to produce keys from 1 to 10, and their values as corresponding number's square.
5) Dictionary Comprehension to produce a dictionary like {'a':0,'e':0,'i':0,'o':0,'u':0}.