Python Forum
Input a number with any number of digits and output it in reverse order of digits.
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Input a number with any number of digits and output it in reverse order of digits.
#5
Probably not what you're looking for, but howz about:

orig_num = [1, 2, 3, 4, 5]
list.sort(orig_num, reverse=True)

print("Reversed number = {}".format(orig_num))
Output:
Reversed number = [5, 4, 3, 2, 1]
If it ain't broke, I just haven't gotten to it yet.
OS: Windows 10, openSuse 42.3, freeBSD 11, Raspian "Stretch"
Python 3.6.5, IDE: PyCharm 2018 Community Edition
Reply


Messages In This Thread
RE: Input a number with any number of digits and output it in reverse order of digits. - by sparkz_alot - Mar-09-2017, 02:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Printing the code line number arbiel 2 199 Jun-15-2024, 07:37 PM
Last Post: arbiel
  Finding the price based on industry and number of transactions chandramouliarun 1 1,072 Jun-04-2024, 06:57 PM
Last Post: marythodge4
Music Python Script Repeating Number When Saving Facebook Photos ThuanyPK 2 269 May-13-2024, 10:59 PM
Last Post: ebn852_pan
  intering int number akbarza 1 371 Apr-28-2024, 08:55 AM
Last Post: Gribouillis
Brick Number stored as text with openpyxl CAD79 2 751 Apr-17-2024, 10:17 AM
Last Post: CAD79
  If a set element has digits in the element tester_V 3 442 Mar-25-2024, 04:43 PM
Last Post: deanhystad
  [SOLVED] Pad strings to always get three-digit number? Winfried 2 488 Jan-27-2024, 05:23 PM
Last Post: Winfried
  Prime number detector Mark17 5 971 Nov-27-2023, 12:53 PM
Last Post: deanhystad
  Create X Number of Variables and Assign Data RockBlok 8 1,190 Nov-14-2023, 08:46 AM
Last Post: perfringo
  find the sum of a series of values that equal a number ancorte 1 590 Oct-30-2023, 05:41 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020