Write a Python program that takes a number from the user and prints its digits from left to right. (left to right)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 8PE: Write a program that reads in a line consisting of a students name, Social Security number, user ID,...
icon
Related questions
Question

Must show it in Python:

Please show step by step with comments.

Please show it in simplest form.

Write a Python program that takes a number from the user and prints its digits from left to right. (left to right)
[Consider the input number to be an INTEGER. You are not allowed to use String indexing for solving this task]
Example: if the user gives 32768, then print 3, 2, 7, 6, 8
Hint(1): The input) function, converts the input data to String data type by default. Use this knowledge to solve this problem.
Hint(2):
Step1: count how many digits
Step2: calculate 10 to the power that (number of digits) minus 1.
Step3: Say, 32768 has 5 digits, so you calculate 10 to the power 4 which is 10,000. Then divide 32,768 by 10,000 and thus you get 3.
Take remainder of 32,768 by 10,000 and thus you get 2,768 Then divide 10,000 by 10 to get 1,000
Then divide 2,768 by 1,000 and thus you get 2.
take remainder of 2,768 by 1,000 and thus you get 768 keep going on until there is no more digits left (zero!).
In short:
Loop 1: First count digits, say 5 in this case for 32,768
Loop 2: Then calculate 10 to the power 4 (5-1), that is 10,000.
Loop 3: Then repeat following three steps
32,768 // 10,000 = 3
32,768 % 10,000 = 2,768
10,000//10 = 1,000
Transcribed Image Text:Write a Python program that takes a number from the user and prints its digits from left to right. (left to right) [Consider the input number to be an INTEGER. You are not allowed to use String indexing for solving this task] Example: if the user gives 32768, then print 3, 2, 7, 6, 8 Hint(1): The input) function, converts the input data to String data type by default. Use this knowledge to solve this problem. Hint(2): Step1: count how many digits Step2: calculate 10 to the power that (number of digits) minus 1. Step3: Say, 32768 has 5 digits, so you calculate 10 to the power 4 which is 10,000. Then divide 32,768 by 10,000 and thus you get 3. Take remainder of 32,768 by 10,000 and thus you get 2,768 Then divide 10,000 by 10 to get 1,000 Then divide 2,768 by 1,000 and thus you get 2. take remainder of 2,768 by 1,000 and thus you get 768 keep going on until there is no more digits left (zero!). In short: Loop 1: First count digits, say 5 in this case for 32,768 Loop 2: Then calculate 10 to the power 4 (5-1), that is 10,000. Loop 3: Then repeat following three steps 32,768 // 10,000 = 3 32,768 % 10,000 = 2,768 10,000//10 = 1,000
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr