“Python -Text umgekehrt” Code-Antworten

wie man eine Zeichenfolge in Python umgeht

# in order to make a string reversed in python 
# you have to use the slicing as following

string = "racecar"
print(string[::-1])
Tejas Naik

Python -Text umgekehrt

def reverse(text):
    reversed = ''
    for i in range(len(text)-1, -1, -1):
        reversed += text[i]
    return reversed

print("reverse({}): {}".format("abcd", reverse("abcd")))
Storm Johnson

Ähnliche Antworten wie “Python -Text umgekehrt”

Fragen ähnlich wie “Python -Text umgekehrt”

Weitere verwandte Antworten zu “Python -Text umgekehrt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen