Inspiration
MLH LHD Build
What it does
Reverse a string
How we built it
python
Code
def reverse(s):
str = ""
for i in s:
str = i + str
return str
a way to take a string and turn it around backwards
MLH LHD Build
Reverse a string
python
def reverse(s):
str = ""
for i in s:
str = i + str
return str
Log in or sign up for Devpost to join the conversation.