Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
rstring
#python 2.7.12 def rstring(s): if len(s) <= 1: return s return rstring(s[1:]) + s[0] inputString = 'hello world' print 'Input String = ',inputString print 'Reverse String = ',rstring(inputString)
run
|
edit
|
history
|
help
0
ab
PyDeco2
Manual
Data structures
asxsd
http_request
16
problem rstring
cat
PyPartial