write a program to input a string and convert it into upper case and print in alphabetical order. For eg. Apple-AELPP
Answers
Answered by
0
Answer:
a = input()
a = a.upper()
a = list(a)
a=sorted(a)
for i in a:
print(i,end="")
Explanation:
it is the code in python in easiest way ..
Similar questions