Movatterモバイル変換


[0]ホーム

URL:


Skip to content
July 19, 2025
Latest
Home »Python program to find reverse of a number using slice
Python program to find reverse of a number using slice
Python program to find reverse of a number using slicePython program to find reverse of a number using slice

Hello everyone, welcome back toProgramming In Python! Here we will learn a simple Python logic to find the reverse of a number using a slice operation.

Here we read a number from the user and reverse that number using slice operations. We first cast that integer number as a string and then perform a slicing operation to reverse the number.

Syntax : str(num)[::-1])

We can also reverse a number without using slice operations, which is discussed inanother post.

You can also watch the video on YouTubehere.

Program on GitHub

Reverse a number – Code Visualization

Task :

To reverse a given integer number.

Approach :

  • Read an input number usinginput() orraw_input().
  • Check whether the value entered is an integer or not.
  • We convert that integer number to a stringstr(num).
  • Now we use advanced slice operation[start:end:step] leaving the start and empty and giving step a value of -1, this slice operation reverses the string.
  • Print the result.

Program on GitHub

Program :

num = input('Enter any number : ')try:    val = int(num)    print('Reverse of the given number is : ', str(num)[::-1])except ValueError:    print("That's not a valid number!")

 

Output :

Reverse of a number with slicing in Python
The reverse of a number with slicing in Python

Reverse of a number with slicing in Python
The reverse of a number with slicing in Python

Program on GitHub

You can also find the video on YouTubehere.

Course Suggestion

Want to be strong at OOP in Python? If yes, I would suggest you take the course below.
Course:
Object Oriented Programming in Python

 

Online Python Compiler

Leave a ReplyCancel reply

Your email address will not be published.Required fields are marked*

Special Offer

Subscribe to our newsletter!

Great Deals

Ads

Categories


[8]ページ先頭

©2009-2025 Movatter.jp