Python Program to print the reverse order of string


str=input("Enter word")

s=str.reverse

print(s)

Comments

Some popular posts

Python Program that computes the net amount of a bank account based a transaction log from console input.