wort = input("Geben Sie ein Wort ein: ") umgedreht = "" for char in wort: umgedreht = char + umgedreht print(umgedreht)