Question4: Create and use a lambda expression which calculates
the sum of three numbers. Ask the user for three numbers and use
the lambda function to print the sum [6 marks]
Question5:
Write a generator function which generates the Fibonacci
series. [0,1,2,4,8,16,…]. The Fibonacci series is a list of numbers
where each number is the sum of the previous two. [3 marks]
Then write the code to iterate through the first six numbers
of sequence. [3 marks]
Question6: Write a...