Instagram
youtube
Facebook
Twitter

Program to reverse an integer in Python

This Python program takes an integer as input from the user, converts it to a string, and stores it in the variable new. The string is then reversed using negative slicing ([::-1]), and the reversed string is stored in the variable reverse_str. The reversed string is then converted back into an integer and stored in the variable output. Finally, the program prints the reversed number. For example, if the user inputs 123, the output will be 321.

 

Program:

num = int(input("Enter a number: "))

new = str(num)

reverse_str = new[::-1]

output = int(reverse_str)

print(output)