Hi@akhtar,
Strings can be reversed using slicing. To reverse a string, we simply create a slice that starts with the length of the string and ends at index 0. The slice statement means start at string length, end at position 0, move with the step -1.
str="Python"
stringlength=len(str)
slicedString=str[stringlength::-1]
print (slicedString)