Computer Science, asked by ishitaep20, 7 months ago

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 khanpurravi123
1

Answer:

please make me brainleast

Answered by gaganadithyareddy9
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