Contact
Privacy
Coding Development Art
  • Home
  • Latest
  • Oldest
  • Popular
  • Random
  • Home»
  • Categrories»
  • Programming Languages»
  • Python»

Write a program to extract and print digits of a number in reverse order. The number is input from user. - Python

Categories:
Python
Viewed: 4 - Published at: a few seconds ago

[ Write a program to extract and print digits of a number in reverse order. The number is input from user. ]

num = int(input("Enter a number with multiple digit: "))
n=0
while num>0:
    a = num%10
    num = num - a
    num = num/10
    print(int(a),end="")
    n = n + 1

Related Posts:

Http Web Server - big response packet issue C#
Http Web Server - big response packet issue C#
C#
Why wont this request follow my Tornado redirect?
Why wont this request follow my Tornado redirect?
Python
How to concatenate two functions on the same line?
How to concatenate two functions on the same line?
Python
Python: Split list into list of dicts?
Python: Split list into list of dicts?
Python
"Cast" to int in Python 3.4
"Cast" to int in Python 3.4
Python
'Loading' div before the entire website is loaded
'Loading' div before the entire website is loaded

You may also like:

Write a python program that asks for user input and prints the given input
Write a python program that asks for user input and prints the given input
Python
Jump Search in Python
Jump Search in Python
Python
Android JSON Parsing From URL Example
Android JSON Parsing From URL Example
Android
Math.sqrt - Square Root in Java
Math.sqrt - Square Root in Java
Java
Write a python function that takes in two numbers and returns their HCF
Write a python function that takes in two numbers and returns their HCF
Python
Prevent Cross-Site Scripting (XSS) in Spring Boot with Content-Security Policies (CSPs)
Prevent Cross-Site Scripting (XSS) in Spring Boot with Content-Security Policies (CSPs)
Java
Categories
  • Blog
    • Career
    • Computer
    • Downloads
    • Internet
    • Linux
    • News
    • Review
    • Security
    • Technology
  • Database
    • MySql
    • Oracle Database
    • SQL Server
    • SQLite
    • mongodb
  • Dev
    • Algorithm
    • Android
    • Batch File Programming
    • Books
    • Competitive Programming
    • Computer Networks
    • Data Structure
    • Design
    • Development
    • Flutter
    • Game
    • Git
    • Interview Questions
    • JDBC
    • Machine Learning
    • Mobile
    • Operating System
    • Programming
    • Projects
    • Sponsored
    • Webservice
    • iOS
  • Framework
    • .NET
    • Angular
    • Django
    • MVC
    • Nodejs
    • React
  • Programming Languages
    • ASP.NET
    • C Programs
    • C#
    • C++ Programs
    • CSS
    • HTML
    • JSP
    • Java
    • JavaScript
    • PHP
    • PL/SQL
    • Python
    • SQL
    • Swift
    • VB.NET
  • Tools
    • privacy-policy-generator
    • Mac Vendors
    • Ports Numbers
    • Wifi Routers Passwords

Site all the data, are collected from Internet, belongs to original author, please do not used for commercial purposes !

Coding Development Art
  https://www.codevelop.art
 
  contact@codevelop.art

Posts

  • Home
  • Latest
  • Oldest
  • Popular
  • Random

Follow Us

© 2018 codevelop.art - Coding Develop Art - programming and development tutorials blog - Learn all Program languages | codevelop.art.
All Rights Reserved.
  • Contact
  • Privacy
  • Terms of service
  • Copyright
  • Disclaimer