Question: Q5 Q6 Q7 Q8 Differentiate between a) List and Tuples b) Sets and Frozen sets. Write a recursive program in python to find power

Q5 Q6 Q7 Q8 Differentiate between a) List and Tuples b) Sets and Frozen sets. Write a recursive program in python to find power of a number. For example, 2,5 is given to the function and result 32 must be returned. (Use of power operator or math library will not be considered). Get two strings S1 and S2 from user. Write a program to append string S2 in the middle of a string S1. Create a python list and do the following operations on a list a) Print the duplicate elements from the list. b) Print the length of the list c) Remove the third element of the list
Step by Step Solution
There are 3 Steps involved in it
5 a List and Tuple Mutability List Lists are mutable which means you can change their elements add remove or modify after they are created Tuple Tuples are immutable which means once you create a tupl... View full answer
Get step-by-step solutions from verified subject matter experts
