Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
reverse Aufgabe
def reverse(string): pos=len(string)-1 s="" while pos>= 0: s=s+string[pos] pos=pos-1 return s print(reverse("Hello World")) print(reverse("irdas"))
run
|
edit
|
history
|
help
0
validation
XII-F
shuru
floating point limitations
V
EJ2_PYTHON_20.321.212-7
models
Contact Class
HW4
pythonic way (V2)