Easy:
Create a list comprehension to generate a list of squares for numbers from 1 to 10.
Write a list comprehension to filter out all the even numbers from a list of integers between 1 and 20.
Generate a list of first 10 multiples of 3 using list comprehension.
Create a list comprehension that extracts all the vowels from a given string.
Use a list comprehension to convert a list of Celsius temperatures to Fahrenheit.
Medium:
Output: [1, 2, 'Fizz', 4, 'Buzz', 'Fizz', 7, 8, 'Fizz', 'Buzz', 11, 'Fizz', 13, 14,
'FizzBuzz', 16, 17, 'Fizz', 19, 'Buzz']