Write a Python program which will take a list of Names from the user.Create a dictionary from those Names that will hold the names inalphabetical manner.[Hint: You might need to use the “sorted” method.]Sample Input:Afif Rahim Zubayer Ronaldo Zebin Akram Rakib Bob MikeSample Output:{"A" : ["Afif", "Akram"], "B" : ["Bob"], "M" : ["Mike"], "R" :["Rahim", "Ronaldo" , "Rakib"], "Z" : ["Zubayer", "Zebin"]}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here