#--------------------------------------------------- WAP to create list of the following (take input from the user) (a) Any five student’s name (b) Any five numbers (c) Any five alphabets (d) Any five name of colors. #----------------------------------------------------------------------------- WAP to accept 10 numbers from the user, if the number is odd and then add that number to the list. (input numbers are: 1,2,3,4,5,6,7,8,9,10) A=[1,2,3,4,5,6,7,8,9,10] d=[] for i in A: if(i%2!=0): d.append(i) print(d) #------------------------------------------- ------------------------------------ WAP to find the second largest number from the following list. A=[23,12,45,67,55] A.sort() print(A[-2]) #-------------------------------------------------------------------------- Write a code in python to modify the content of the list in such a way that the elements,which are multiples of 10 swap with the value present in the very next position in the list d=[90,56,45,20,34,54] i=0 while(i