Skip to main content

python program to reverse txt, number anything

 x = input("input the text you want to reverse: ")

print ( x [::-1])

Comments