Write the python code to input a number and print the reverse of the number by using for loop.
Answers
Answered by
0
Answer:
#This code is written in python 3
n=input()
for i in range(len(n),-1):
print(n[i] ,end="")
Similar questions