Wap in python that takes a string from user and display the length of the string and display the string in reverse format using for loop
Answers
Answered by
1
Answer:
please make me brainleast
Answered by
4
Answer:
Hey! Here is your python code...
x = input("Enter: ")
print("Length of string = ", len(x))
for i in range(len(x)):
print(x[-i-1], end='')
# HOPE THIS HELPS!!
Similar questions