Write a python program that will take a string as input from the user. Theinput string should have a combination of BOTH the alphabets and thedigits. Then, your task is to identify the digits from that input stringand store those digits in a list. Finally, sort the list and print thesorted list and the sum of digits as output to the user.Note: You are allowed to use the built-in sort() or sorted() function here.================================Sample Input 01:m4gt567q09y2Sample Output 01:['0', '2', '4', '5', '6', '7', '9']33Explanation 01:Here from the given input string, the digits are stored in a list. Aftersorting the digits, the sorted list is printed to the user. Then, the sumof the digit which is 33 is printed.================================Sample Input 02:954217Sample Output 02:There is no alphabet in the stringExplanation 02:Here from the given input string, there is no alphabet in the string. Thatis why it is printing “There is no alphabet in the string”================================Sample Input 03:abcdefghSample Output 03:There is no digit in the stringExplanation 03: Here from the given input string, there is no digit in thestring. That is why it is printing “There is no digit in the string”
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here