There really is no hope of making this code even half-way decent without spending the time to rewrite them all properly. Don't want to do any of that
12 lines
270 B
Python
Executable File
12 lines
270 B
Python
Executable File
eingabe = input("Dein Text: ")
|
|
caracter = -1
|
|
morecaracters = True
|
|
amountleft = len(eingabe)
|
|
while morecaracters:
|
|
print(eingabe[caracter], end="")
|
|
if amountleft > 1:
|
|
caracter -= 1
|
|
amountleft -= 1
|
|
else:
|
|
morecaracters = False
|