You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'''Objective : To identify and fix errors in a Python program that manipulates strings.'''
'''There's a small mistake in the for loop range. It should be range(len(s)-1, -1, -1) instead of range(len(s) - 1, 0, -1) to include the first character in the reversed string.