Please write a program which asks the user to type in an integer number. If the user types in a number equal to or below 0, the execution ends. Otherwise the program prints out the factorial of the number. The factorial of a number involves multiplying the number by all the positive integers smaller than itself. In other words, it is the product of all positive integers less than or equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120. Some examples of expected behaviour: Please type in a number: 3 The factorial of the number 3 is 6 Please type in a number: 4 The factorial of the number 4 is 24 Please type in a number: -1 Thanks and bye! Sample output

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Can you use Python programming language to to this question?

Thanks

Please write a program which asks the user to type in an integer number. If the user
types in a number equal to or below 0, the execution ends. Otherwise the program
prints out the factorial of the number.
The factorial of a number involves multiplying the number by all the positive integers
smaller than itself. In other words, it is the product of all positive integers less than or
equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120.
Some examples of expected behaviour:
Please type in a number: 3
The factorial of the number 3 is 6
Please type in a number: 4
The factorial of the number 4 is 24
Please type in a number: -1
Thanks and bye!
Please type in a number: 1
The factorial of the number 1 is 1
Please type in a number: 0
Thanks and bye!
1 # Write your solution here
Sample output
Sample output
Transcribed Image Text:Please write a program which asks the user to type in an integer number. If the user types in a number equal to or below 0, the execution ends. Otherwise the program prints out the factorial of the number. The factorial of a number involves multiplying the number by all the positive integers smaller than itself. In other words, it is the product of all positive integers less than or equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120. Some examples of expected behaviour: Please type in a number: 3 The factorial of the number 3 is 6 Please type in a number: 4 The factorial of the number 4 is 24 Please type in a number: -1 Thanks and bye! Please type in a number: 1 The factorial of the number 1 is 1 Please type in a number: 0 Thanks and bye! 1 # Write your solution here Sample output Sample output
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Hello,it shows that '' instead of 2 rows, your program prints out 1 rows''

Please write a program which asks the user to type in an integer number. If the user
types in a number equal to or below 0, the execution ends. Otherwise the program
prints out the factorial of the number.
The factorial of a number involves multiplying the number by all the positive integers
smaller than itself. In other words, it is the product of all positive integers less than or
equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120.
Some examples of expected behaviour:
Please type in a number: 3
The factorial of the number 3 is 6
Please type in a number: 4
The factorial of the number 4 is 24
Please type in a number: -1
Thanks and bye!
Please type in a number: 1
The factorial of the number 1 is 1
Please type in a number: 0
Thanks and bye!
1
2
3
4
5
7
8
9
10
11
12
13
▶ RUN
num= int(input("Enter a number: "))
factorial 1
# check if the number is negative, positive or zero
if num < 0:
print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
print("The factorial of 0 is 1").
else:
for i in range(1, num + 1):
factorial factorial i
print("The factorial of",num, "is", factorial)
TEST
Test Results
Reset
FAIL: PythonEditor Test: test_2_numbers
With the input
Show all
3
0
, instead of 2 rows, your program prints out 1 rows:
The factorial of 3 is 6
50 %
Sample output
Sample output
Need help?
Close
Submit
Transcribed Image Text:Please write a program which asks the user to type in an integer number. If the user types in a number equal to or below 0, the execution ends. Otherwise the program prints out the factorial of the number. The factorial of a number involves multiplying the number by all the positive integers smaller than itself. In other words, it is the product of all positive integers less than or equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120. Some examples of expected behaviour: Please type in a number: 3 The factorial of the number 3 is 6 Please type in a number: 4 The factorial of the number 4 is 24 Please type in a number: -1 Thanks and bye! Please type in a number: 1 The factorial of the number 1 is 1 Please type in a number: 0 Thanks and bye! 1 2 3 4 5 7 8 9 10 11 12 13 ▶ RUN num= int(input("Enter a number: ")) factorial 1 # check if the number is negative, positive or zero if num < 0: print("Sorry, factorial does not exist for negative numbers") elif num == 0: print("The factorial of 0 is 1"). else: for i in range(1, num + 1): factorial factorial i print("The factorial of",num, "is", factorial) TEST Test Results Reset FAIL: PythonEditor Test: test_2_numbers With the input Show all 3 0 , instead of 2 rows, your program prints out 1 rows: The factorial of 3 is 6 50 % Sample output Sample output Need help? Close Submit
Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Constants and Variables
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education