Loops, Strings
def rev_string(astring):
"""Return reverse of string.
You may NOT use the reversed() function!
"""
# START SOLUTION
out = ""
for i in range(len(astring), 0, -1):
out += astring[i - 1]
return out