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
Math,
3 months ago
Social Sciences,
3 months ago
Social Sciences,
3 months ago
Biology,
7 months ago
English,
7 months ago
Math,
11 months ago
Science,
11 months ago
Math,
11 months ago