Question

Write a python program that does the following. a. It asks the user to enter a...

Write a python program that does the following.

a. It asks the user to enter a 5-digit integer value, n.

b. The program reads a value entered by the user. If the value is not in the right range, the program should terminate.

c. The program calculates and stores the 5 individual digits of n.

d. The program outputs a “bar code” made of 5 lines of stars that represent the digits of the number n.

For example, the following represents one run of the program. (The user chooses the number 16384.)

Enter a 5 digit integer: 16384

*

******

***

********

****

Please use python

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Answer:

Explanation:

Here is the code which first takes as input an integer n and then if the integer is correct, all the 5 digits of the integer are taken out and stored.

Then asterisks are printed according to those stored variables a, b, c, d, e

feel free to comment if you need any help!

Code:

n = int(input("Enter a 5-digit integer: "))

if(n>=10000 and n<=99999):
  
e = n%10
  
n = n//10
  
d = n%10
  
n = n//10
  
c = n%10
  
n = n//10
  
b = n%10
  
n = n//10
  
a = n%10
  
print('*'*a)
print('*'*b)
print('*'*c)
print('*'*d)
print('*'*e)
  

int(input(Enter a 5-digit integer : )) if(n) = 10000 and n<=99999): e = n%10 n = n//10 d = n%10 n = n//10 C = n%10 n = n//1

Output:

Enter a 5-digit integer: 16384 * ****** *** ++ **** **** Program finished with exit code 0 Press ENTER to exit console. I

PLEASE UPVOTE IF YOU FOUND THIS HELPFUL!

PLEASE COMMENT IF YOU NEED ANY HELP!

Add a comment
Know the answer?
Add Answer to:
Write a python program that does the following. a. It asks the user to enter a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT