Computer Science, asked by rishi709, 8 months ago

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 saipavangadi
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