“Lexikografische Ordnung Python” Code-Antworten

Lexikografische Ordnung Python

my_arr = [
"hello",
"apple",
"actor",
"people",
"dog"
]

print(my_arr)
my_arr.sort()
print(my_arr)
Cheerful Cormorant

Sortieren Sie Lexo Python

#code
def sortlexo(n):
    w = []
    for i in n:
        w.append(i)
    
    w.sort
    w = w[::-1]
    for i in w:
        print(i,end = "")
for i in range(int(input())):
    n= input()
    sortlexo(n)
Comfortable Copperhead

Ähnliche Antworten wie “Lexikografische Ordnung Python”

Fragen ähnlich wie “Lexikografische Ordnung Python”

Weitere verwandte Antworten zu “Lexikografische Ordnung Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen