reverse numbers in python using for loop range code example
Example: python reverse for loop
rop = input('Type a three or more word or code.')
t = len(rop)
j = ''
for i in range(t-1,-1,-1):
j = j+rop[i]
print(j)
rop = input('Type a three or more word or code.')
t = len(rop)
j = ''
for i in range(t-1,-1,-1):
j = j+rop[i]
print(j)